diff --git a/config/Migrations/20240801112143_ChangeAvatarColumnTypeInSocialAccounts.php b/config/Migrations/20240801112143_ChangeAvatarColumnTypeInSocialAccounts.php new file mode 100644 index 00000000..0fb638b8 --- /dev/null +++ b/config/Migrations/20240801112143_ChangeAvatarColumnTypeInSocialAccounts.php @@ -0,0 +1,24 @@ +table('social_accounts'); + $table->changeColumn('avatar', 'text', [ + 'default' => null, + 'null' => true, + ]); + $table->update(); + } +}