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

@@ -170,7 +170,7 @@ create table ttrss_filters (id serial not null primary key,
create table ttrss_labels (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,
sql_exp varchar(250) not null,
sql_exp text not null,
description varchar(250) not null);
create index ttrss_labels_owner_uid_index on ttrss_labels(owner_uid);
@@ -190,7 +190,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
create table ttrss_version (schema_version int not null);
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,