increments('id'); $table->string('name', 100)->nullable(); $table->string('flag2', 100)->nullable(); $table->string('date', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('registrations'); } }