mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-29 09:31:24 +01:00
10 lines
271 B
SQL
Executable File
10 lines
271 B
SQL
Executable File
USE ##;
|
|
-- !
|
|
ALTER TABLE OwnCloudAccounts
|
|
ADD COLUMN msg_limit INTEGER NOT NULL DEFAULT -1 CHECK (msg_limit >= -1);
|
|
-- !
|
|
DROP TABLE IF EXISTS Labels;
|
|
-- !
|
|
DROP TABLE IF EXISTS LabelsInMessages;
|
|
-- !
|
|
UPDATE Information SET inf_value = '9' WHERE inf_key = 'schema_version'; |