This commit is contained in:
Christopher Cookman 2024-08-30 14:16:12 -06:00
parent f2808e7b1a
commit 6b2dae64d4
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42
2 changed files with 3 additions and 1 deletions

View file

@ -1,4 +1,4 @@
-- Add ttsOverride column to the accounts table
ALTER TABLE 'accounts' ADD COLUMN 'ttsOverride' INTEGER NOT NULL DEFAULT 0;
ALTER TABLE 'accounts' ADD COLUMN IF NOT EXISTS 'ttsOverride' INTEGER NOT NULL DEFAULT 0;
-- Retroactively set ttsOverride to 0 for all accounts that dont have it set at all
UPDATE 'accounts' SET 'ttsOverride' = 0 WHERE 'ttsOverride' IS NULL;

View file

@ -0,0 +1,2 @@
-- Add ttsOverride column to the accounts table
ALTER TABLE 'accounts' ADD COLUMN IF NOT EXISTS 'cooldown' TEXT;