increments('id'); $table->integer('buyer_id')->nullable(); $table->integer('seller_id')->nullable(); $table->enum('status_aml', [])->nullable(); $table->text('anl_notes')->nullable(); $table->enum('aml_required', [])->nullable(); $table->mediumText('aml_ids')->nullable(); $table->dateTime('aml_date')->nullable(); $table->decimal('aml_score', 5,2)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_aml_kycs'); } }