1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-15 16:39:14 +00:00

remove limit on ttrss_feeds.feed_url length (closes #199)

This commit is contained in:
Andrew Dolgov
2008-03-13 09:18:21 +01:00
parent f0053c6a47
commit 43398b8e43
5 changed files with 15 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ create table ttrss_feeds (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,
title varchar(200) not null,
cat_id integer default null references ttrss_feed_categories(id) on delete set null,
feed_url varchar(250) not null,
feed_url text not null,
icon_url varchar(250) not null default '',
update_interval integer not null default 0,
purge_interval integer not null default 0,
@@ -184,7 +184,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 (33);
insert into ttrss_version values (34);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,