1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-02 08:39:15 +00:00

add new-style schema versions and updater

This commit is contained in:
Andrew Dolgov
2007-02-24 17:46:39 +01:00
parent 1212419849
commit fecd57c886
24 changed files with 572 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
alter table ttrss_filters add column action_param varchar(200);
update ttrss_filters set action_param = '';
alter table ttrss_filters change action_param action_param varchar(200) not null;
alter table ttrss_filters alter column action_param set default '';
insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
'Assign tags');
update ttrss_version set schema_version = 12;