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