diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2008-09-18 06:02:43 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2008-09-18 06:02:43 +0100 |
| commit | f7f939b29c44fbc13e567c855bcb2a35e1083030 (patch) | |
| tree | 65adf6dd66d1a8e84c66aca7091771126bdc724f /schema/ttrss_schema_mysql.sql | |
| parent | 5a437c88d78ab42fa17ba29176be58e46561b4c6 (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.sql | 4 |
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, |