From: Daniel Karbach Date: Sun, 30 Aug 2026 14:10:32 +0000 (+0200) Subject: nullable discord guild icon hash X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=43be35b6f610c0dd2fea970e55565939a7d55169;p=alttp.git nullable discord guild icon hash --- diff --git a/database/migrations/2026_08_30_140839_nullable_guild_icon_hash.php b/database/migrations/2026_08_30_140839_nullable_guild_icon_hash.php new file mode 100644 index 0000000..eeba364 --- /dev/null +++ b/database/migrations/2026_08_30_140839_nullable_guild_icon_hash.php @@ -0,0 +1,26 @@ +string('icon_hash')->nullable()->default(null)->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // + } +};