From d13d8c61b366f1cd38f83adcd82ad687ffc35aea Mon Sep 17 00:00:00 2001 From: subhajit Date: Tue, 21 Jul 2026 17:30:55 +0530 Subject: [PATCH] delete migration --- ...e_avatar_column_to_text_in_users_table.php | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 database/migrations/2026_07_20_153552_change_avatar_column_to_text_in_users_table.php diff --git a/database/migrations/2026_07_20_153552_change_avatar_column_to_text_in_users_table.php b/database/migrations/2026_07_20_153552_change_avatar_column_to_text_in_users_table.php deleted file mode 100644 index 166363a..0000000 --- a/database/migrations/2026_07_20_153552_change_avatar_column_to_text_in_users_table.php +++ /dev/null @@ -1,28 +0,0 @@ -string('avatar', 255)->nullable()->change(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::table('users', function (Blueprint $table) { - $table->string('avatar', 255)->nullable()->change(); - }); - } -};