mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 15:05:56 +00:00
while we are at it, change ttrss_entries.{guid,link} to text too
This commit is contained in:
@@ -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,
|
feed_id integer not null references ttrss_feeds(id) ON DELETE CASCADE,
|
||||||
updated datetime not null,
|
updated datetime not null,
|
||||||
title text not null,
|
title text not null,
|
||||||
guid varchar(250) not null unique,
|
guid text not null unique,
|
||||||
link varchar(250) not null,
|
link text not null,
|
||||||
content text not null,
|
content text not null,
|
||||||
content_hash varchar(250) not null,
|
content_hash varchar(250) not null,
|
||||||
last_read datetime,
|
last_read datetime,
|
||||||
|
|||||||
@@ -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,
|
feed_id int references ttrss_feeds(id) ON DELETE CASCADE not null,
|
||||||
updated timestamp not null,
|
updated timestamp not null,
|
||||||
title text not null,
|
title text not null,
|
||||||
guid varchar(300) not null unique,
|
guid text not null unique,
|
||||||
link varchar(300) not null,
|
link text not null,
|
||||||
content text not null,
|
content text not null,
|
||||||
content_hash varchar(250) not null,
|
content_hash varchar(250) not null,
|
||||||
last_read timestamp,
|
last_read timestamp,
|
||||||
|
|||||||
Reference in New Issue
Block a user