fix migration

This commit is contained in:
subhajit 2026-07-21 17:26:59 +05:30
parent 0924d1c546
commit 4882abd20e

View File

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