increments('id'); $table->increments('ID')->nullable(); $table->string('name', 256)->nullable(); $table->string('address', 512)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('masters'); } }