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(); - }); - } -};