mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-01 02:48:05 +01:00
4 lines
200 B
MySQL
4 lines
200 B
MySQL
|
ALTER TABLE Messages
|
||
|
ADD COLUMN is_pdeleted INTEGER(1) NOT NULL DEFAULT 0 CHECK (is_pdeleted >= 0 AND is_pdeleted <= 1);
|
||
|
-- !
|
||
|
UPDATE Information SET inf_value = '2' WHERE inf_key = 'schema_version';
|