From 4882abd20e34daa9fd1525e62bd80010d9ab47ff Mon Sep 17 00:00:00 2001 From: subhajit Date: Tue, 21 Jul 2026 17:26:59 +0530 Subject: [PATCH] fix migration --- ...07_20_153552_change_avatar_column_to_text_in_users_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 index e720858..166363a 100644 --- 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 @@ -12,7 +12,7 @@ public function up(): void { Schema::table('users', function (Blueprint $table) { - $table->text('avatar')->nullable()->change(); + $table->string('avatar', 255)->nullable()->change(); }); }