summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-11-17 11:33:13 +0100
committerAndrew Dolgov <[email protected]>2007-11-17 11:33:13 +0100
commitaa6d1e9766b92029b5219201ba7d1081b687c0f9 (patch)
treee196cee04d4bed09554b43001af6f53913bcd89f /schema/ttrss_schema_mysql.sql
parent963d33141c30ce4663410eb48d66fa50d8e56701 (diff)
schema: enclosure fixes
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index d3792b9e4..c239d6d08 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -208,6 +208,7 @@ create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
content_type varchar(250) not null,
post_id integer not null,
+ title text not null,
index (post_id),
foreign key (post_id) references ttrss_entries(id) ON DELETE cascade);