1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 02:05:57 +00:00

schema: add ttrss_feedbrowser_cache (bump schema)

This commit is contained in:
Andrew Dolgov
2009-01-16 10:33:25 +01:00
parent df00fb8051
commit 0c630ef326
5 changed files with 27 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
-- SET NAMES utf8;
-- SET CHARACTER SET utf8;
drop table if exists ttrss_feedbrowser_cache;
drop table if exists ttrss_version;
drop table if exists ttrss_labels;
drop table if exists ttrss_filters;
@@ -375,4 +376,8 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
index (id),
index (expire)) TYPE=InnoDB;
create table ttrss_feedbrowser_cache (
feed_url text not null,
subscribers integer not null);
commit;