1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-05 01:29:16 +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,10 @@
begin;
create table ttrss_scheduled_updates (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
feed_id integer default null references ttrss_feeds(id) ON DELETE CASCADE,
entered timestamp not null default NOW());
update ttrss_version set schema_version = 5;
commit;