1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-06 15:09:15 +00:00

alter ttrss_labels.sql_exp to text, bump schema (closes #221)

This commit is contained in:
Andrew Dolgov
2008-09-18 06:02:43 +01:00
parent 5a437c88d7
commit f7f939b29c
5 changed files with 15 additions and 5 deletions

View File

@@ -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,