]> git.wh0rd.org - tt-rss.git/blob - schema/ttrss_schema_pgsql.sql
enlarge filters action_param field
[tt-rss.git] / schema / ttrss_schema_pgsql.sql
1 drop table ttrss_version;
2 drop table ttrss_labels;
3 drop table ttrss_filters;
4 drop table ttrss_filter_types;
5 drop table ttrss_filter_actions;
6 drop table ttrss_user_prefs;
7 drop table ttrss_prefs;
8 drop table ttrss_prefs_types;
9 drop table ttrss_prefs_sections;
10 drop table ttrss_tags;
11 drop table ttrss_entry_comments;
12 drop table ttrss_user_entries;
13 drop table ttrss_entries;
14 drop table ttrss_scheduled_updates;
15 drop table ttrss_feeds;
16 drop table ttrss_feed_categories;
17 drop table ttrss_users;
18 drop table ttrss_themes;
19 drop table ttrss_sessions;
20
21 begin;
22
23 create table ttrss_themes(id serial not null primary key,
24 theme_name varchar(200) not null,
25 theme_path varchar(200) not null);
26
27 insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
28 insert into ttrss_themes (theme_name, theme_path) values ('Graycube', 'graycube');
29 insert into ttrss_themes (theme_name, theme_path) values ('Default (Compact)', 'compact');
30
31 create table ttrss_users (id serial not null primary key,
32 login varchar(120) not null unique,
33 pwd_hash varchar(250) not null,
34 last_login timestamp default null,
35 access_level integer not null default 0,
36 email varchar(250) not null default '',
37 email_digest boolean not null default false,
38 last_digest_sent timestamp default null,
39 theme_id integer references ttrss_themes(id) default null);
40
41 insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
42 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);
43
44 create table ttrss_feed_categories(id serial not null primary key,
45 owner_uid integer not null references ttrss_users(id) on delete cascade,
46 collapsed boolean not null default false,
47 title varchar(200) not null);
48
49 create table ttrss_feeds (id serial not null primary key,
50 owner_uid integer not null references ttrss_users(id) on delete cascade,
51 title varchar(200) not null,
52 cat_id integer references ttrss_feed_categories(id) default null,
53 feed_url varchar(250) not null,
54 icon_url varchar(250) not null default '',
55 update_interval integer not null default 0,
56 purge_interval integer not null default 0,
57 last_updated timestamp default null,
58 last_error text not null default '',
59 site_url varchar(250) not null default '',
60 auth_login varchar(250) not null default '',
61 parent_feed integer default null references ttrss_feeds(id) on delete set null,
62 private boolean not null default false,
63 auth_pass varchar(250) not null default '',
64 hidden boolean not null default false,
65 include_in_digest boolean not null default true,
66 rtl_content boolean not null default false,
67 auth_pass_encrypted boolean not null default false);
68
69 create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
70
71 insert into ttrss_feeds (owner_uid, title, feed_url) values
72 (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.spb.ru/releases.rss');
73
74 insert into ttrss_feeds (owner_uid, title, feed_url) values
75 (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.spb.ru/forum/rss.php');
76
77 create table ttrss_entries (id serial not null primary key,
78 title text not null,
79 guid text not null unique,
80 link text not null,
81 updated timestamp not null,
82 content text not null,
83 content_hash varchar(250) not null,
84 no_orig_date boolean not null default false,
85 date_entered timestamp not null default NOW(),
86 num_comments integer not null default 0,
87 comments varchar(250) not null default '',
88 author varchar(250) not null default '');
89
90 create index ttrss_entries_guid_index on ttrss_entries(guid);
91 -- create index ttrss_entries_title_index on ttrss_entries(title);
92 -- create index ttrss_entries_date_entered_index on ttrss_entries(date_entered);
93
94 create table ttrss_user_entries (
95 int_id serial not null primary key,
96 ref_id integer not null references ttrss_entries(id) ON DELETE CASCADE,
97 feed_id int references ttrss_feeds(id) ON DELETE CASCADE not null,
98 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
99 marked boolean not null default false,
100 published boolean not null default false,
101 last_read timestamp,
102 unread boolean not null default true);
103
104 -- create index ttrss_user_entries_feed_id_index on ttrss_user_entries(feed_id);
105 -- create index ttrss_user_entries_owner_uid_index on ttrss_user_entries(owner_uid);
106 create index ttrss_user_entries_ref_id_index on ttrss_user_entries(ref_id);
107 create index ttrss_user_entries_feed_id on ttrss_user_entries(feed_id);
108
109 create table ttrss_entry_comments (id serial not null primary key,
110 ref_id integer not null references ttrss_entries(id) ON DELETE CASCADE,
111 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
112 private boolean not null default false,
113 date_entered timestamp not null);
114
115 create index ttrss_entry_comments_ref_id_index on ttrss_entry_comments(ref_id);
116 -- create index ttrss_entry_comments_owner_uid_index on ttrss_entry_comments(owner_uid);
117
118 create table ttrss_filter_types (id integer not null primary key,
119 name varchar(120) unique not null,
120 description varchar(250) not null unique);
121
122 insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
123 insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
124 insert into ttrss_filter_types (id,name,description) values (3, 'both',
125 'Title or Content');
126 insert into ttrss_filter_types (id,name,description) values (4, 'link',
127 'Link');
128
129 create table ttrss_filter_actions (id integer not null primary key,
130 name varchar(120) unique not null,
131 description varchar(250) not null unique);
132
133 insert into ttrss_filter_actions (id,name,description) values (1, 'filter',
134 'Filter article');
135
136 insert into ttrss_filter_actions (id,name,description) values (2, 'catchup',
137 'Mark as read');
138
139 insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
140 'Set starred');
141
142 insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
143 'Assign tags');
144
145 insert into ttrss_filter_actions (id,name,description) values (5, 'publish',
146 'Publish article');
147
148 create table ttrss_filters (id serial not null primary key,
149 owner_uid integer not null references ttrss_users(id) on delete cascade,
150 feed_id integer references ttrss_feeds(id) on delete cascade default null,
151 filter_type integer not null references ttrss_filter_types(id),
152 reg_exp varchar(250) not null,
153 enabled boolean not null default true,
154 inverse boolean not null default false,
155 action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
156 action_param varchar(250) not null default '');
157
158 create table ttrss_labels (id serial not null primary key,
159 owner_uid integer not null references ttrss_users(id) on delete cascade,
160 sql_exp varchar(250) not null,
161 description varchar(250) not null);
162
163 create index ttrss_labels_owner_uid_index on ttrss_labels(owner_uid);
164
165 insert into ttrss_labels (owner_uid,sql_exp,description) values (1,'unread = true',
166 'Unread articles');
167
168 insert into ttrss_labels (owner_uid,sql_exp,description) values (1,
169 'last_read is null and unread = false', 'Updated articles');
170
171 create table ttrss_tags (id serial not null primary key,
172 tag_name varchar(250) not null,
173 owner_uid integer not null references ttrss_users(id) on delete cascade,
174 post_int_id integer references ttrss_user_entries(int_id) ON DELETE CASCADE not null);
175
176 create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
177
178 create table ttrss_version (schema_version int not null);
179
180 insert into ttrss_version values (19);
181
182 create table ttrss_prefs_types (id integer not null primary key,
183 type_name varchar(100) not null);
184
185 insert into ttrss_prefs_types (id, type_name) values (1, 'bool');
186 insert into ttrss_prefs_types (id, type_name) values (2, 'string');
187 insert into ttrss_prefs_types (id, type_name) values (3, 'integer');
188
189 create table ttrss_prefs_sections (id integer not null primary key,
190 section_name varchar(100) not null);
191
192 insert into ttrss_prefs_sections (id, section_name) values (1, 'General');
193 insert into ttrss_prefs_sections (id, section_name) values (2, 'Interface');
194 insert into ttrss_prefs_sections (id, section_name) values (3, 'Advanced');
195
196 create table ttrss_prefs (pref_name varchar(250) not null primary key,
197 type_id integer not null references ttrss_prefs_types(id),
198 section_id integer not null references ttrss_prefs_sections(id) default 1,
199 short_desc text not null,
200 help_text text not null default '',
201 def_value text not null);
202
203 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_ICONS', 1, 'true', 'Enable icons in feedlist',3);
204 insert 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);
205 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('UPDATE_POST_ON_CHECKSUM_CHANGE', 1, 'true', 'Update post on checksum change',1);
206 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ENABLE_LABELS', 1, 'false', 'Enable labels',3,
207 'Experimental support for virtual feeds based on user crafted SQL queries. This feature is highly experimental and at this point not user friendly. Use with caution.');
208
209 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_UPDATE_INTERVAL', 3, '30', 'Default interval between feed updates (in minutes)',1);
210 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DEFAULT_ARTICLE_LIMIT', 3, '0', 'Default article limit',2,
211 'Default limit for articles to display, any custom number you like (0 - disables).');
212
213 insert 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,
214 'This option is useful when you are reading several planet-type aggregators with partially colliding userbase.
215 When disabled, it forces same posts from different feeds to appear only once.');
216
217 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('USER_STYLESHEET_URL', 2, '', 'User stylesheet URL',2,
218 'Link to user stylesheet to override default style, disabled if empty.');
219
220 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_CATS', 1, 'false', 'Enable feed categories',2);
221
222 insert 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);
223
224 insert 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);
225 insert 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);
226
227 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HEADLINES_SMART_DATE', 1, 'true', 'Use more accessible date/time format for headlines',3);
228
229 insert 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,
230 'Display expanded list of feed articles, instead of separate displays for headlines and article content');
231
232 insert 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);
233
234 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('OPEN_LINKS_IN_NEW_WINDOW', 1, 'true', 'Open article links in new browser window',2);
235
236 insert 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,
237 'When "Mark as read" button is clicked in toolbar, automatically open next feed with unread articles.');
238
239 insert 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);
240
241 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('EXTENDED_FEEDLIST', 1, 'false', 'Show additional information in feedlist',3);
242
243 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('MARK_UNREAD_ON_UPDATE', 1, 'false', 'Set articles as unread on update',3);
244
245 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('REVERSE_HEADLINES', 1, 'false', 'Reverse headline order (oldest first)',2);
246
247 insert 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,
248 'This option enables sending daily digest of new (and unread) headlines on your configured e-mail address');
249
250 insert 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);
251
252 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('CDM_AUTO_CATCHUP', 1, 'false', 'Mark articles as read automatically',2,
253 'This option enables marking articles as read automatically in combined mode while you scroll article list.');
254
255 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_MODE', 2, 'adaptive', '', 1);
256
257 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_LIMIT', 3, '30', '', 1);
258
259 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
260
261 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_INFOBOX_DISABLE_OVERLAY', 1, 'false', '', 1);
262
263 insert 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,
264 'Strip all but most common HTML tags when reading articles.');
265
266 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('BLACKLISTED_TAGS', 2, 'main, generic, misc', 'Blacklisted tags', 3,
267 'When auto-detecting tags in articles these tags will not be applied (comma-separated list).');
268
269 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_SEARCH_TOOLBAR', 1, 'false', 'Enable search toolbar',2);
270
271 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ENABLE_PAGINATION', 2, '', '', 1);
272
273 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_PUBLISH_KEY', 2, '', '', 1);
274
275 create table ttrss_user_prefs (
276 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
277 pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,
278 value text not null);
279
280 create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
281 -- create index ttrss_user_prefs_value_index on ttrss_user_prefs(value);
282
283 create table ttrss_scheduled_updates (id serial not null primary key,
284 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
285 feed_id integer default null references ttrss_feeds(id) ON DELETE CASCADE,
286 entered timestamp not null default NOW());
287
288 create table ttrss_sessions (id varchar(250) unique not null primary key,
289 data text,
290 expire integer not null);
291
292 create index ttrss_sessions_expire_index on ttrss_sessions(expire);
293
294 commit;