]> git.wh0rd.org - tt-rss.git/commitdiff
while we are at it, change ttrss_entries.{guid,link} to text too
authorAndrew Dolgov <fox@bah.spb.su>
Wed, 14 Sep 2005 13:52:21 +0000 (14:52 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Wed, 14 Sep 2005 13:52:21 +0000 (14:52 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index e88bde876febc15c0fbea002bce7027a601fd0ff..b34f7070b6793616e871684b8e8f9184df6bfda8 100644 (file)
@@ -32,8 +32,8 @@ 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 text not null, 
-       guid varchar(250) not null unique, 
-       link varchar(250) not null, 
+       guid text not null unique, 
+       link text not null, 
        content text not null,
        content_hash varchar(250) not null,
        last_read datetime,
index 5ec3c375e5ee95dae06e695ff9312592de307661..77e88a158c4c2d061d6d549fe7f8e09ec51915e3 100644 (file)
@@ -32,8 +32,8 @@ 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 text not null, 
-       guid varchar(300) not null unique, 
-       link varchar(300) not null, 
+       guid text not null unique, 
+       link text not null, 
        content text not null,
        content_hash varchar(250) not null,
        last_read timestamp,