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