From: Daniel Karbach Date: Tue, 9 Dec 2025 11:29:45 +0000 (+0100) Subject: fix discord token table for fresh installs X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=46e07b1286746d46a71ae4b9d563add655ce1207;p=alttp.git fix discord token table for fresh installs --- 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(); + }); + } +};