diff --git a/database/migrations/2021_04_05_053134_remove_email_verified_at_from_users.php b/database/migrations/2021_04_05_053134_remove_email_verified_at_from_users.php deleted file mode 100644 index 6380d60..0000000 --- a/database/migrations/2021_04_05_053134_remove_email_verified_at_from_users.php +++ /dev/null @@ -1,34 +0,0 @@ -dropColumn('email_verified_at'); - }); - } - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('users', function (Blueprint $table) { - $table->addColumn('timestamp', 'email_verified_at')->nullable(); - }); - } -}