diff --git a/application/migrations/0001_01_01_000000_create_users_table.php b/application/migrations/0001_01_01_000000_create_users_table.php index 61faf5fa..088f00f1 100644 --- a/application/migrations/0001_01_01_000000_create_users_table.php +++ b/application/migrations/0001_01_01_000000_create_users_table.php @@ -16,8 +16,8 @@ public function up() $table->increments('id'); $table->string('name', 191); $table->string('email', 191)->unique(); - $table->timestamp('email_verified_at')->nullable(); $table->string('password', 60); + $table->timestamp('email_verified_at')->nullable(); $table->timestamps(); });