1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 23:31: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

@@ -83,7 +83,8 @@ create table ttrss_entries (id integer not null primary key auto_increment,
no_orig_date bool not null default 0,
date_entered datetime not null,
num_comments integer not null default 0,
comments varchar(250) not null default '') TYPE=InnoDB;
comments varchar(250) not null default '',
author varchar(250) not null default '') TYPE=InnoDB;
create table ttrss_user_entries (
int_id integer not null primary key auto_increment,