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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user