]> git.wh0rd.org - tt-rss.git/blame - schema/ttrss_schema_mysql.sql
add ttrss_feed_categories.parent_cat, bump schema
[tt-rss.git] / schema / ttrss_schema_mysql.sql
CommitLineData
84004f8c
AD
1SET NAMES utf8;
2SET CHARACTER SET utf8;
150b4a2c 3
58fa1bbc
AD
4drop table if exists ttrss_linked_feeds;
5drop table if exists ttrss_linked_instances;
8801fb01 6drop table if exists ttrss_access_keys;
f8bfb81f
AD
7drop table if exists ttrss_user_labels2;
8drop table if exists ttrss_labels2;
0c630ef3 9drop table if exists ttrss_feedbrowser_cache;
81dde650
AD
10drop table if exists ttrss_version;
11drop table if exists ttrss_labels;
12drop table if exists ttrss_filters;
13drop table if exists ttrss_filter_types;
53d6935b 14drop table if exists ttrss_filter_actions;
81dde650
AD
15drop table if exists ttrss_user_prefs;
16drop table if exists ttrss_prefs;
17drop table if exists ttrss_prefs_types;
58fa1bbc 18drop table if exists ttrss_prefs_sections;
eb36b4eb 19drop table if exists ttrss_tags;
963d3314 20drop table if exists ttrss_enclosures;
d9084cf2 21drop table if exists ttrss_settings_profiles;
8caa7999 22drop table if exists ttrss_entry_comments;
81dde650 23drop table if exists ttrss_user_entries;
648472a7 24drop table if exists ttrss_entries;
ab5eb26f 25drop table if exists ttrss_scheduled_updates;
4d736378 26drop table if exists ttrss_counters_cache;
8a4c759e 27drop table if exists ttrss_cat_counters_cache;
648472a7 28drop table if exists ttrss_feeds;
24902606 29drop table if exists ttrss_archived_feeds;
4a9a8bd8 30drop table if exists ttrss_feed_categories;
a6ccf566 31drop table if exists ttrss_users;
e552e5a2 32drop table if exists ttrss_themes;
36bfab86 33drop table if exists ttrss_sessions;
e552e5a2 34
855d0ecf
AD
35begin;
36
a6ccf566
AD
37create table ttrss_users (id integer primary key not null auto_increment,
38 login varchar(120) not null unique,
39 pwd_hash varchar(250) not null,
f16ef236 40 last_login datetime default null,
e552e5a2
AD
41 access_level integer not null default 0,
42 theme_id integer default null,
8629e09d 43 email varchar(250) not null default '',
73fe13af 44 full_name varchar(250) not null default '',
32be4b10
AD
45 email_digest bool not null default false,
46 last_digest_sent datetime default null,
e90053fe 47 salt varchar(250) not null default '',
54a3d3cf 48 created datetime default null,
57e24c82 49 twitter_oauth longtext default null,
7bfeaa17 50 index (theme_id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
a6ccf566 51
58fa1bbc 52insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
7f16656e 53 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);
648472a7 54
17095c5a 55create table ttrss_feed_categories(id integer not null primary key auto_increment,
5a214f9d
AD
56 owner_uid integer not null,
57 title varchar(200) not null,
28bcadff 58 collapsed bool not null default false,
782ddd70 59 order_id integer not null default 0,
9432bfa0
AD
60 parent_cat integer,
61 index(parent_cat),
62 foreign key (parent_cat) references ttrss_feed_categories(id) ON DELETE SET NULL,
5a214f9d 63 index(owner_uid),
7bfeaa17 64 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
4a9a8bd8 65
24902606
AD
66create table ttrss_archived_feeds (id integer not null primary key,
67 owner_uid integer not null,
58fa1bbc
AD
68 title varchar(200) not null,
69 feed_url text not null,
24902606
AD
70 site_url varchar(250) not null default '',
71 index(owner_uid),
7bfeaa17 72 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
24902606 73
4d736378
AD
74create table ttrss_counters_cache (
75 feed_id integer not null,
76 owner_uid integer not null,
77 value integer not null default 0,
a1eba24b 78 updated datetime not null,
8a4c759e
AD
79 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
80);
81
ed7f0ecd
AD
82create index ttrss_counters_cache_feed_id_idx on ttrss_counters_cache(feed_id);
83create index ttrss_counters_cache_owner_uid_idx on ttrss_counters_cache(owner_uid);
84create index ttrss_counters_cache_value_idx on ttrss_counters_cache(value);
85
8a4c759e
AD
86create table ttrss_cat_counters_cache (
87 feed_id integer not null,
88 owner_uid integer not null,
89 value integer not null default 0,
90 updated datetime not null,
4d736378
AD
91 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
92);
93
ed7f0ecd
AD
94create index ttrss_cat_counters_cache_owner_uid_idx on ttrss_cat_counters_cache(owner_uid);
95
648472a7 96create table ttrss_feeds (id integer not null auto_increment primary key,
a6ccf566 97 owner_uid integer not null,
58fa1bbc 98 title varchar(200) not null,
4a9a8bd8 99 cat_id integer default null,
58fa1bbc 100 feed_url text not null,
648472a7 101 icon_url varchar(250) not null default '',
d148926e 102 update_interval integer not null default 0,
1089b16b 103 purge_interval integer not null default 0,
13b98333 104 last_updated datetime default 0,
0d276d67 105 last_error varchar(250) not null default '',
a6ccf566 106 site_url varchar(250) not null default '',
e93a3c96
AD
107 auth_login varchar(250) not null default '',
108 auth_pass varchar(250) not null default '',
de99f500 109 parent_feed integer default null,
5b35b4de 110 private bool not null default false,
70f6dbb1 111 rtl_content bool not null default false,
7da377ca 112 hidden bool not null default false,
3dd9183c 113 include_in_digest boolean not null default true,
fb67e2ba 114 cache_images boolean not null default false,
155a2a53 115 auth_pass_encrypted boolean not null default false,
14fb4e91 116 last_viewed datetime default null,
3c50da83 117 last_update_started datetime default null,
e0382fd6 118 always_display_enclosures boolean not null default false,
5b8534ef 119 update_method integer not null default 0,
56781036 120 order_id integer not null default 0,
9382ca84 121 mark_unread_on_update boolean not null default false,
74b046a1 122 update_on_checksum_change boolean not null default false,
9382ca84 123 strip_images boolean not null default false,
5ab9791f 124 pubsub_state integer not null default 0,
382268c6 125 favicon_last_checked datetime default null,
a6ccf566 126 index(owner_uid),
4a9a8bd8
AD
127 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
128 index(cat_id),
f0907182 129 foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE SET NULL,
de99f500 130 index(parent_feed),
7bfeaa17 131 foreign key (parent_feed) references ttrss_feeds(id) ON DELETE SET NULL) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
a6ccf566 132
44f1eeed
AD
133create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
134create index ttrss_feeds_cat_id_idx on ttrss_feeds(cat_id);
135
078b5702 136insert into ttrss_feeds (owner_uid, title, feed_url) values
1f8c187d 137 (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.org/releases.rss');
078b5702 138
58fa1bbc 139insert into ttrss_feeds (owner_uid, title, feed_url) values
1f8c187d 140 (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.org/forum/rss.php');
648472a7 141
58fa1bbc
AD
142create table ttrss_entries (id integer not null primary key auto_increment,
143 title text not null,
144 guid varchar(255) not null unique,
145 link text not null,
146 updated datetime not null,
8e54a21e 147 content longtext not null,
648472a7 148 content_hash varchar(250) not null,
8158c57a 149 no_orig_date bool not null default 0,
c62d62f6 150 date_entered datetime not null,
25ea2805 151 date_updated datetime not null,
eb40e11b 152 num_comments integer not null default 0,
4bc760da 153 comments varchar(250) not null default '',
7bfeaa17 154 author varchar(250) not null default '') ENGINE=InnoDB DEFAULT CHARSET=UTF8;
c62d62f6 155
b60e1d86 156create index ttrss_entries_date_entered_index on ttrss_entries(date_entered);
ed7f0ecd
AD
157create index ttrss_entries_guid_index on ttrss_entries(guid);
158create index ttrss_entries_updated_idx on ttrss_entries(updated);
b60e1d86 159
c62d62f6
AD
160create table ttrss_user_entries (
161 int_id integer not null primary key auto_increment,
162 ref_id integer not null,
83cd33fc 163 uuid varchar(200) not null,
58fa1bbc
AD
164 feed_id int,
165 orig_feed_id int,
c62d62f6
AD
166 owner_uid integer not null,
167 marked bool not null default 0,
ffba8297 168 published bool not null default 0,
490c366d 169 tag_cache text not null,
905ff52a 170 label_cache text not null,
c62d62f6 171 last_read datetime,
afb6038e 172 score int not null default 0,
8e54a21e 173 note longtext,
1696229f 174 unread bool not null default 1,
c62d62f6
AD
175 index (ref_id),
176 foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
1696229f 177 index (feed_id),
a6ccf566 178 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
e04c18a2 179 index (orig_feed_id),
24902606 180 foreign key (orig_feed_id) references ttrss_archived_feeds(id) ON DELETE SET NULL,
a6ccf566 181 index (owner_uid),
7bfeaa17 182 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
648472a7 183
8514e925
AD
184create index ttrss_user_entries_owner_uid_index on ttrss_user_entries(owner_uid);
185create index ttrss_user_entries_ref_id_index on ttrss_user_entries(ref_id);
186create index ttrss_user_entries_feed_id on ttrss_user_entries(feed_id);
ed7f0ecd
AD
187create index ttrss_user_entries_unread_idx on ttrss_user_entries(unread);
188
8caa7999
AD
189create table ttrss_entry_comments (id integer not null primary key,
190 ref_id integer not null,
191 owner_uid integer not null,
192 private bool not null default 0,
193 date_entered datetime not null,
194 index (ref_id),
195 foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
196 index (owner_uid),
7bfeaa17 197 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
8caa7999 198
58fa1bbc
AD
199create table ttrss_filter_types (id integer primary key,
200 name varchar(120) unique not null,
7bfeaa17 201 description varchar(250) not null unique) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
648472a7 202
648472a7
AD
203insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
204insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
58fa1bbc 205insert into ttrss_filter_types (id,name,description) values (3, 'both',
648472a7 206 'Title or Content');
58fa1bbc 207insert into ttrss_filter_types (id,name,description) values (4, 'link',
3a933f22 208 'Link');
58fa1bbc 209insert into ttrss_filter_types (id,name,description) values (5, 'date',
75fa1e31 210 'Article Date');
fa3317be 211insert into ttrss_filter_types (id,name,description) values (6, 'author', 'Author');
c3fc5e47 212insert into ttrss_filter_types (id,name,description) values (7, 'tag', 'Article Tags');
648472a7 213
58fa1bbc
AD
214create table ttrss_filter_actions (id integer not null primary key,
215 name varchar(120) unique not null,
7bfeaa17 216 description varchar(250) not null unique) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
53d6935b 217
58fa1bbc 218insert into ttrss_filter_actions (id,name,description) values (1, 'filter',
b9ad7cfa 219 'Delete article');
53d6935b 220
58fa1bbc 221insert into ttrss_filter_actions (id,name,description) values (2, 'catchup',
53d6935b
AD
222 'Mark as read');
223
58fa1bbc 224insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
dd7d3187
AD
225 'Set starred');
226
58fa1bbc 227insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
de07b5ee 228 'Assign tags');
7cb9311b 229
58fa1bbc 230insert into ttrss_filter_actions (id,name,description) values (5, 'publish',
0c4811be
AD
231 'Publish article');
232
58fa1bbc 233insert into ttrss_filter_actions (id,name,description) values (6, 'score',
fdb7b03f
AD
234 'Modify score');
235
58fa1bbc 236insert into ttrss_filter_actions (id,name,description) values (7, 'label',
ceb30ba4
AD
237 'Assign label');
238
a6ccf566 239create table ttrss_filters (id integer not null primary key auto_increment,
58fa1bbc 240 owner_uid integer not null,
2bbd16b9 241 feed_id integer default null,
a6ccf566 242 filter_type integer not null,
4b3dff6e 243 reg_exp varchar(250) not null,
2362de6d 244 filter_param varchar(250) not null default '',
3f2ff803 245 inverse bool not null default false,
4fd52ba4 246 enabled bool not null default true,
ba975b2e
AD
247 cat_filter bool not null default false,
248 cat_id integer default null,
53d6935b 249 action_id integer not null default 1,
91d64fb8 250 action_param varchar(250) not null default '',
a6ccf566
AD
251 index (filter_type),
252 foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE,
253 index (owner_uid),
2bbd16b9
AD
254 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
255 index (feed_id),
53d6935b 256 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
ba975b2e
AD
257 index (cat_id),
258 foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE CASCADE,
53d6935b 259 index (action_id),
7bfeaa17 260 foreign key (action_id) references ttrss_filter_actions(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
648472a7 261
58fa1bbc
AD
262create table ttrss_tags (id integer primary key auto_increment,
263 owner_uid integer not null,
eb36b4eb 264 tag_name varchar(250) not null,
c62d62f6
AD
265 post_int_id integer not null,
266 index (post_int_id),
267 foreign key (post_int_id) references ttrss_user_entries(int_id) ON DELETE CASCADE,
a6ccf566 268 index (owner_uid),
7bfeaa17 269 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
eb36b4eb 270
7bfeaa17 271create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
5f171894 272
9432bfa0 273insert into ttrss_version values (93);
5f171894 274
d9084cf2 275create table ttrss_enclosures (id integer primary key auto_increment,
963d3314
AD
276 content_url text not null,
277 content_type varchar(250) not null,
278 post_id integer not null,
aa6d1e97 279 title text not null,
ce53e200 280 duration text not null,
963d3314 281 index (post_id),
7bfeaa17 282 foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
963d3314 283
f0143d4e
AD
284create index ttrss_enclosures_post_id_idx on ttrss_enclosures(post_id);
285
d9084cf2
AD
286create table ttrss_settings_profiles(id integer primary key auto_increment,
287 title varchar(250) not null,
288 owner_uid integer not null,
289 index (owner_uid),
7bfeaa17 290 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
d9084cf2 291
58fa1bbc 292create table ttrss_prefs_types (id integer not null primary key,
7bfeaa17 293 type_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
e0257be1
AD
294
295insert into ttrss_prefs_types (id, type_name) values (1, 'bool');
296insert into ttrss_prefs_types (id, type_name) values (2, 'string');
297insert into ttrss_prefs_types (id, type_name) values (3, 'integer');
298
58fa1bbc 299create table ttrss_prefs_sections (id integer not null primary key,
7bfeaa17 300 section_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
e0257be1 301
603e9ebe
AD
302insert into ttrss_prefs_sections (id, section_name) values (1, 'General');
303insert into ttrss_prefs_sections (id, section_name) values (2, 'Interface');
650bc435 304insert into ttrss_prefs_sections (id, section_name) values (3, 'Advanced');
e0257be1 305
a6ccf566 306create table ttrss_prefs (pref_name varchar(250) not null primary key,
e0257be1
AD
307 type_id integer not null,
308 section_id integer not null default 1,
603e9ebe 309 short_desc text not null,
2918ff5e 310 help_text varchar(250) not null default '',
2b6ed06b 311 access_level integer not null default 0,
e0257be1 312 def_value text not null,
e0257be1
AD
313 index(type_id),
314 foreign key (type_id) references ttrss_prefs_types(id),
315 index(section_id),
7bfeaa17 316 foreign key (section_id) references ttrss_prefs_sections(id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
e0257be1 317
2ced2bb8
AD
318create index ttrss_prefs_pref_name_idx on ttrss_prefs(pref_name);
319
a6ccf566 320insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_OLD_DAYS', 3, '60', 'Purge old posts after this number of days (0 - disables)',1);
a6ccf566 321
fbe2ea1c 322insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_UPDATE_INTERVAL', 3, '30', 'Default interval between feed updates',1);
6f068202
AD
323
324insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_ARTICLE_LIMIT', 3, '30', 'Amount of articles to display at once',2);
a6ccf566 325
30b6ee8c 326insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ALLOW_DUPLICATE_POSTS', 1, 'true', 'Allow duplicate posts',1, 'This option is useful when you are reading several planet-type aggregators with partially colliding userbase. When disabled, it forces same posts from different feeds to appear only once.');
386d7b5b 327
b4a3e2ff 328insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_CATS', 1, 'true', 'Enable feed categories',2);
10dc37ac 329
591c396d 330insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SHOW_CONTENT_PREVIEW', 1, 'true', 'Show content preview in headlines list',2);
10dc37ac 331
8fe19cd8
AD
332insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SHORT_DATE_FORMAT', 2, 'M d, G:i', 'Short date format',3);
333insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('LONG_DATE_FORMAT', 2, 'D, M d Y - G:i', 'Long date format',3);
334
30b6ee8c 335insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('COMBINED_DISPLAY_MODE', 1, 'false', 'Combined feed display',2, 'Display expanded list of feed articles, instead of separate displays for headlines and article content');
386cbf27 336
7f123cda
AD
337insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HIDE_READ_FEEDS', 1, 'false', 'Hide feeds with no unread messages',2);
338
af0845ca 339insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ON_CATCHUP_SHOW_NEXT_FEED', 1, 'false', 'On catchup show next feed',2, 'Automatically open next feed with unread articles after marking one as read');
e52d6bc4 340
c9268ed5
AD
341insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('FEEDS_SORT_BY_UNREAD', 1, 'false', 'Sort feeds by unread articles count',2);
342
d6e5706d
AD
343insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('REVERSE_HEADLINES', 1, 'false', 'Reverse headline order (oldest first)',2);
344
30b6ee8c 345insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DIGEST_ENABLE', 1, 'false', 'Enable e-mail digest',1, 'This option enables sending daily digest of new (and unread) headlines on your configured e-mail address');
9a61ce6d 346
f6d6e22f
AD
347insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('CONFIRM_FEED_CATCHUP', 1, 'true', 'Confirm marking feed as read',3);
348
2f42315a 349insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('CDM_AUTO_CATCHUP', 1, 'false', 'Automatically mark articles as read',3, 'This option enables marking articles as read automatically while you scroll article list.');
724d7444 350
40496720
AD
351insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_MODE', 2, 'adaptive', '', 1);
352
353insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_LIMIT', 3, '30', '', 1);
354
fe8d2059 355insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
87b9fb65 356
30b6ee8c 357insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('STRIP_UNSAFE_TAGS', 1, 'true', 'Strip unsafe tags from articles', 3, 'Strip all but most common HTML tags when reading articles.');
feead173 358
30b6ee8c 359insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('BLACKLISTED_TAGS', 2, 'main, generic, misc, uncategorized, blog, blogroll, general, news', 'Blacklisted tags', 3, 'When auto-detecting tags in articles these tags will not be applied (comma-separated list).');
c59d33a3 360
c1d7e6c3
AD
361insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('FRESH_ARTICLE_MAX_AGE', 3, '24', 'Maximum age of fresh articles (in hours)',2);
362
dc85be2b
AD
363insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DIGEST_CATCHUP', 1, 'false', 'Mark articles in e-mail digest as read',1);
364
bef4c245
AD
365insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('CDM_EXPANDED', 1, 'true', 'Automatically expand articles in combined mode',3);
366
07d0efe9
AD
367insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
368
22f3e356
AD
369insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HIDE_READ_SHOWS_SPECIAL', 1, 'true', 'Show special feeds when hiding read feeds',3);
370
30b6ee8c 371insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('VFEED_GROUP_BY_FEED', 1, 'false', 'Group headlines in virtual feeds',2, 'When this option is enabled, headlines in Special feeds and Labels are grouped by feeds');
d234a2e3 372
8dccabed
AD
373insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('STRIP_IMAGES', 1, 'false', 'Do not show images in articles', 2);
374
7b4d02a8
AD
375insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_ORDER_BY', 2, 'default', '', 1);
376
3a216db4
AD
377insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_API_ACCESS', 1, 'false', 'Enable external API', 3);
378
57937c42
AD
379insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_SPECIAL', 1, 'false', '', 1);
380
381insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_LABELS', 1, 'false', '', 1);
382
383insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_UNCAT', 1, 'false', '', 1);
384
385insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_FEEDLIST', 1, 'false', '', 1);
386
e9105eb5
AD
387insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_ENABLE_CATS', 1, 'false', '', 1);
388
389insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SHOW_IMAGES', 1, 'false', '', 1);
390
391insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_HIDE_READ', 1, 'false', '', 1);
392
393insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SORT_FEEDS_UNREAD', 1, 'false', '', 1);
394
dce46cad 395insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_THEME_ID', 2, '0', '', 1);
d9084cf2 396
324944f3
AD
397insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('USER_TIMEZONE', 2, 'UTC', 'User timezone', 1);
398
88e4e597
AD
399insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('USER_STYLESHEET', 2, '', 'Customize stylesheet', 2, 'Customize CSS stylesheet to your liking');
400
30b6ee8c 401insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('SORT_HEADLINES_BY_FEED_DATE', 1, 'true', 'Sort headlines by feed date',3, 'Use feed-specified date to sort headlines instead of local import date.');
cfad9259
AD
402
403insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_BROWSE_CATS', 1, 'true', '', 1);
3d72afa1 404
8de8bfb8 405insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('SSL_CERT_SERIAL', 2, '', 'Login with an SSL certificate',3, 'Click to register your SSL client certificate with tt-rss');
b3990c92 406
6841e9d7 407insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DIGEST_PREFERRED_TIME', 2, '00:00', 'Try to send digests around specified time', 1, 'Uses UTC timezone');
61c1812f 408
5b7bd238
AD
409insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_SHOW_EMPTY_CATS', 1, 'false', '', 1);
410
a6ccf566
AD
411create table ttrss_user_prefs (
412 owner_uid integer not null,
413 pref_name varchar(250),
88e4e597 414 value longtext not null,
d9084cf2
AD
415 profile integer,
416 index (profile),
417 foreign key (profile) references ttrss_settings_profiles(id) ON DELETE CASCADE,
a6ccf566
AD
418 index (owner_uid),
419 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
420 index (pref_name),
7bfeaa17 421 foreign key (pref_name) references ttrss_prefs(pref_name) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
a6ccf566 422
2ced2bb8
AD
423create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
424create index ttrss_user_prefs_pref_name_idx on ttrss_user_prefs(pref_name);
425
04febb04 426create table ttrss_sessions (id varchar(250) unique not null primary key,
36bfab86
AD
427 data text,
428 expire integer not null,
58fa1bbc 429 index (id),
7bfeaa17 430 index (expire)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
36bfab86 431
0c630ef3
AD
432create table ttrss_feedbrowser_cache (
433 feed_url text not null,
109662e1 434 site_url text not null,
931dcbc1 435 title text not null,
58fa1bbc 436 subscribers integer not null) DEFAULT CHARSET=UTF8;
0c630ef3 437
58fa1bbc 438create table ttrss_labels2 (id integer not null primary key auto_increment,
ceb30ba4
AD
439 owner_uid integer not null,
440 caption varchar(250) not null,
aec57d7a
AD
441 fg_color varchar(15) not null default '',
442 bg_color varchar(15) not null default '',
ceb30ba4 443 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
7bfeaa17 444) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
ceb30ba4
AD
445
446create table ttrss_user_labels2 (label_id integer not null,
447 article_id integer not null,
448 foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,
449 foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
7bfeaa17 450) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
ceb30ba4 451
58fa1bbc 452create table ttrss_access_keys (id integer not null primary key auto_increment,
8801fb01
AD
453 access_key varchar(250) not null,
454 feed_id varchar(250) not null,
455 is_cat bool not null default false,
456 owner_uid integer not null,
7bfeaa17 457 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
8801fb01 458
58fa1bbc 459create table ttrss_linked_instances (id integer not null primary key auto_increment,
afb875cc 460 last_connected datetime not null,
cfc06471
AD
461 last_status_in integer not null,
462 last_status_out integer not null,
1eb3012f 463 access_key varchar(250) not null unique,
7bfeaa17 464 access_url text not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
58fa1bbc
AD
465
466create table ttrss_linked_feeds (
467 feed_url text not null,
109662e1 468 site_url text not null,
58fa1bbc
AD
469 title text not null,
470 created datetime not null,
471 updated datetime not null,
472 instance_id integer not null,
473 subscribers integer not null,
7bfeaa17 474 foreign key (instance_id) references ttrss_linked_instances(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
58fa1bbc 475
855d0ecf 476commit;