increments('id'); $table->string('ref', 20)->nullable(); $table->string('name', 800)->nullable(); $table->string('name_a', 200)->nullable(); $table->string('name_b', 200)->nullable(); $table->string('name_c', 200)->nullable(); $table->string('name_d', 200)->nullable(); $table->string('name_e', 200)->nullable(); $table->string('name_f', 200)->nullable(); $table->string('nationality', 100)->nullable(); $table->string('dob', 100)->nullable(); $table->string('passport_no', 50)->nullable(); $table->date('passport_expiry')->nullable(); $table->string('emirates_id', 40)->nullable(); $table->text('description')->nullable(); $table->string('type', 40)->nullable(); $table->string('source', 60)->nullable(); $table->string('source_internal', 50)->nullable(); $table->tinyInteger('partial_scan')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 20)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_aml_names'); } }