From 43be35b6f610c0dd2fea970e55565939a7d55169 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sun, 30 Aug 2026 16:10:32 +0200 Subject: [PATCH] nullable discord guild icon hash --- ..._08_30_140839_nullable_guild_icon_hash.php | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 database/migrations/2026_08_30_140839_nullable_guild_icon_hash.php 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 + { + // + } +}; -- 2.47.3