summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-26 07:39:09 +0100
committerAndrew Dolgov <[email protected]>2006-02-26 07:39:09 +0100
commit4bc760da51ebb36a13edf8b34d3efee0276abaf6 (patch)
treeee200659e16417b331a29a5d95e7bcc380b3d83c /schema/ttrss_schema_mysql.sql
parent63147705ab24244d3cee607cdf4f2024d2acab2a (diff)
add author column to ttrss_entries, add upgrade script for 1.1.4, bump schema version
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index a8fb8698b..eb1076999 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -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,