1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 19:41:29 +00:00

add author column to ttrss_entries, add upgrade script for 1.1.4, bump schema version

This commit is contained in:
Andrew Dolgov
2006-02-26 07:39:09 +01:00
parent 63147705ab
commit 4bc760da51
6 changed files with 25 additions and 2 deletions

View File

@@ -75,7 +75,8 @@ create table ttrss_entries (id serial not null primary key,
no_orig_date boolean not null default false,
date_entered timestamp not null default NOW(),
num_comments integer not null default 0,
comments varchar(250) not null default '');
comments varchar(250) not null default '',
author varchar(250) not null default '');
create index ttrss_entries_guid_index on ttrss_entries(guid);
create index ttrss_entries_title_index on ttrss_entries(title);