summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-09-18 06:02:43 +0100
committerAndrew Dolgov <[email protected]>2008-09-18 06:02:43 +0100
commitf7f939b29c44fbc13e567c855bcb2a35e1083030 (patch)
tree65adf6dd66d1a8e84c66aca7091771126bdc724f /schema/ttrss_schema_mysql.sql
parent5a437c88d78ab42fa17ba29176be58e46561b4c6 (diff)
alter ttrss_labels.sql_exp to text, bump schema (closes #221)
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index f8c919e55..9b3ce6975 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -188,7 +188,7 @@ create table ttrss_filters (id integer not null primary key auto_increment,
create table ttrss_labels (id integer not null primary key auto_increment,
owner_uid integer not null,
- sql_exp varchar(250) not null,
+ sql_exp text not null,
description varchar(250) not null,
index (owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
@@ -210,7 +210,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
-insert into ttrss_version values (42);
+insert into ttrss_version values (43);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,