string('ID')->primary(); $table->string('password'); $table->string('name'); $table->string('nick_name'); $table->string('email'); $table->string('phone_number'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('Admin'); } }