summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-14 14:43:26 +0100
committerAndrew Dolgov <[email protected]>2005-09-14 14:43:26 +0100
commit9ad5b0de31b1b3400f12a66266a48dd321c315b6 (patch)
treeddcb85320b4e06f98b8b3f04a5fc7ec38bbefd15
parent5136011ee70823587a4f18fb79329a299d071ffe (diff)
change ttrss_entries.title type to text
-rw-r--r--schema/ttrss_schema_mysql.sql2
-rw-r--r--schema/ttrss_schema_pgsql.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 882933282..e88bde876 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -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,
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 3c084996f..5ec3c375e 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -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,