]> git.wh0rd.org - tt-rss.git/commitdiff
change ttrss_entries.title type to text
authorAndrew Dolgov <fox@bah.spb.su>
Wed, 14 Sep 2005 13:43:26 +0000 (14:43 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Wed, 14 Sep 2005 13:43:26 +0000 (14:43 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index 8829332827051d74cfd47cd1eba796433428b628..e88bde876febc15c0fbea002bce7027a601fd0ff 100644 (file)
@@ -31,7 +31,7 @@ insert into ttrss_feeds (title,feed_url) values ('Technocrat.net',
 create table ttrss_entries (id integer not null primary key auto_increment, 
        feed_id integer not null references ttrss_feeds(id) ON DELETE CASCADE, 
        updated datetime not null, 
-       title varchar(250) not null, 
+       title text not null, 
        guid varchar(250) not null unique, 
        link varchar(250) not null, 
        content text not null,
index 3c084996f4ea85ab6650b874f0c575ab0dbc0048..5ec3c375e5ee95dae06e695ff9312592de307661 100644 (file)
@@ -31,7 +31,7 @@ insert into ttrss_feeds (title,feed_url) values ('Technocrat.net',
 create table ttrss_entries (id serial not null primary key, 
        feed_id int references ttrss_feeds(id) ON DELETE CASCADE not null, 
        updated timestamp not null, 
-       title varchar(250) not null, 
+       title text not null, 
        guid varchar(300) not null unique, 
        link varchar(300) not null, 
        content text not null,