From 46e07b1286746d46a71ae4b9d563add655ce1207 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Tue, 9 Dec 2025 12:29:45 +0100 Subject: [PATCH] fix discord token table for fresh installs --- ...5_12_09_112639_fix_discord_token_table.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2025_12_09_112639_fix_discord_token_table.php diff --git a/database/migrations/2025_12_09_112639_fix_discord_token_table.php b/database/migrations/2025_12_09_112639_fix_discord_token_table.php new file mode 100644 index 0000000..319b97e --- /dev/null +++ b/database/migrations/2025_12_09_112639_fix_discord_token_table.php @@ -0,0 +1,30 @@ +text('access_token')->change(); + $table->text('refresh_token')->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('discord_access_tokens', function (Blueprint $table) { + $table->string('access_token')->change(); + $table->string('refresh_token')->change(); + }); + } +}; -- 2.47.3