change ttrss_entries.title type to text
This commit is contained in:
parent
5136011ee7
commit
9ad5b0de31
|
@ -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,
|
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 varchar(250) not null,
|
title text not null,
|
||||||
guid varchar(250) not null unique,
|
guid varchar(250) not null unique,
|
||||||
link varchar(250) not null,
|
link varchar(250) not null,
|
||||||
content text not null,
|
content text not null,
|
||||||
|
|
|
@ -31,7 +31,7 @@ insert into ttrss_feeds (title,feed_url) values ('Technocrat.net',
|
||||||
create table ttrss_entries (id serial not null primary key,
|
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 varchar(250) not null,
|
title text not null,
|
||||||
guid varchar(300) not null unique,
|
guid varchar(300) not null unique,
|
||||||
link varchar(300) not null,
|
link varchar(300) not null,
|
||||||
content text not null,
|
content text not null,
|
||||||
|
|
Loading…
Reference in New Issue