mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-29 09:31:24 +01:00
6 lines
238 B
SQL
Executable File
6 lines
238 B
SQL
Executable File
USE ##;
|
|
-- !
|
|
ALTER TABLE TtRssAccounts
|
|
ADD COLUMN update_only_unread INTEGER(1) NOT NULL DEFAULT 0 CHECK (update_only_unread >= 0 AND update_only_unread <= 1);
|
|
-- !
|
|
UPDATE Information SET inf_value = '13' WHERE inf_key = 'schema_version'; |