schema: add ttrss_counters_cache
This commit is contained in:
parent
20be0cf8e7
commit
4d73637869
5 changed files with 33 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
require_once "functions.php";
|
require_once "functions.php";
|
||||||
|
|
||||||
define('EXPECTED_CONFIG_VERSION', 17);
|
define('EXPECTED_CONFIG_VERSION', 17);
|
||||||
define('SCHEMA_VERSION', 43);
|
define('SCHEMA_VERSION', 44);
|
||||||
|
|
||||||
if (!file_exists("config.php")) {
|
if (!file_exists("config.php")) {
|
||||||
print __("<b>Fatal Error</b>: You forgot to copy
|
print __("<b>Fatal Error</b>: You forgot to copy
|
||||||
|
|
|
@ -16,6 +16,7 @@ drop table if exists ttrss_entry_comments;
|
||||||
drop table if exists ttrss_user_entries;
|
drop table if exists ttrss_user_entries;
|
||||||
drop table if exists ttrss_entries;
|
drop table if exists ttrss_entries;
|
||||||
drop table if exists ttrss_scheduled_updates;
|
drop table if exists ttrss_scheduled_updates;
|
||||||
|
drop table if exists ttrss_counters_cache;
|
||||||
drop table if exists ttrss_feeds;
|
drop table if exists ttrss_feeds;
|
||||||
drop table if exists ttrss_feed_categories;
|
drop table if exists ttrss_feed_categories;
|
||||||
drop table if exists ttrss_users;
|
drop table if exists ttrss_users;
|
||||||
|
@ -57,6 +58,14 @@ create table ttrss_feed_categories(id integer not null primary key auto_incremen
|
||||||
index(owner_uid),
|
index(owner_uid),
|
||||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
|
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
|
||||||
|
|
||||||
|
create table ttrss_counters_cache (
|
||||||
|
feed_id integer not null,
|
||||||
|
owner_uid integer not null,
|
||||||
|
value integer not null default 0,
|
||||||
|
foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
|
||||||
|
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
create table ttrss_feeds (id integer not null auto_increment primary key,
|
create table ttrss_feeds (id integer not null auto_increment primary key,
|
||||||
owner_uid integer not null,
|
owner_uid integer not null,
|
||||||
title varchar(200) not null,
|
title varchar(200) not null,
|
||||||
|
@ -210,7 +219,7 @@ create table ttrss_tags (id integer primary key auto_increment,
|
||||||
|
|
||||||
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
|
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
|
||||||
|
|
||||||
insert into ttrss_version values (43);
|
insert into ttrss_version values (44);
|
||||||
|
|
||||||
create table ttrss_enclosures (id serial not null primary key,
|
create table ttrss_enclosures (id serial not null primary key,
|
||||||
content_url text not null,
|
content_url text not null,
|
||||||
|
|
|
@ -13,6 +13,7 @@ drop table ttrss_entry_comments;
|
||||||
drop table ttrss_user_entries;
|
drop table ttrss_user_entries;
|
||||||
drop table ttrss_entries;
|
drop table ttrss_entries;
|
||||||
drop table ttrss_scheduled_updates;
|
drop table ttrss_scheduled_updates;
|
||||||
|
drop table ttrss_counters_cache;
|
||||||
drop table ttrss_feeds;
|
drop table ttrss_feeds;
|
||||||
drop table ttrss_feed_categories;
|
drop table ttrss_feed_categories;
|
||||||
drop table ttrss_users;
|
drop table ttrss_users;
|
||||||
|
@ -83,6 +84,11 @@ insert into ttrss_feeds (owner_uid, title, feed_url) values
|
||||||
insert into ttrss_feeds (owner_uid, title, feed_url) values
|
insert into ttrss_feeds (owner_uid, title, feed_url) values
|
||||||
(1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.spb.ru/forum/rss.php');
|
(1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.spb.ru/forum/rss.php');
|
||||||
|
|
||||||
|
create table ttrss_counters_cache (
|
||||||
|
feed_id integer not null references ttrss_feeds(id) ON DELETE CASCADE,
|
||||||
|
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
||||||
|
value integer not null default 0);
|
||||||
|
|
||||||
create table ttrss_entries (id serial not null primary key,
|
create table ttrss_entries (id serial not null primary key,
|
||||||
title text not null,
|
title text not null,
|
||||||
guid text not null unique,
|
guid text not null unique,
|
||||||
|
@ -190,7 +196,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
|
||||||
|
|
||||||
create table ttrss_version (schema_version int not null);
|
create table ttrss_version (schema_version int not null);
|
||||||
|
|
||||||
insert into ttrss_version values (43);
|
insert into ttrss_version values (44);
|
||||||
|
|
||||||
create table ttrss_enclosures (id serial not null primary key,
|
create table ttrss_enclosures (id serial not null primary key,
|
||||||
content_url text not null,
|
content_url text not null,
|
||||||
|
|
9
schema/versions/mysql/44.sql
Normal file
9
schema/versions/mysql/44.sql
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
create table ttrss_counters_cache (
|
||||||
|
feed_id integer not null,
|
||||||
|
owner_uid integer not null,
|
||||||
|
value integer not null default 0,
|
||||||
|
foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
|
||||||
|
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
update ttrss_version set schema_version = 44;
|
6
schema/versions/pgsql/44.sql
Normal file
6
schema/versions/pgsql/44.sql
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
create table ttrss_counters_cache (
|
||||||
|
feed_id integer not null references ttrss_feeds(id) ON DELETE CASCADE,
|
||||||
|
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
||||||
|
value integer not null default 0);
|
||||||
|
|
||||||
|
update ttrss_version set schema_version = 44;
|
Loading…
Reference in a new issue