1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:56:34 +00:00

add ttrss_user_entries.plugin_data (bump schema)

This commit is contained in:
Andrew Dolgov
2013-02-21 22:08:38 +04:00
parent 6afcbcd1a5
commit 7bfb3dabdd
5 changed files with 19 additions and 3 deletions

View File

@@ -138,6 +138,7 @@ create table ttrss_entries (id serial not null primary key,
date_updated timestamp not null,
num_comments integer not null default 0,
comments varchar(250) not null default '',
plugin_data text,
author varchar(250) not null default '');
create index ttrss_entries_guid_index on ttrss_entries(guid);
@@ -257,7 +258,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
create table ttrss_version (schema_version int not null);
insert into ttrss_version values (102);
insert into ttrss_version values (103);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,