]> git.wh0rd.org Git - tt-rss.git/commitdiff
fix mysql schema upgrade #60
authorAndrew Dolgov <fox@bah.org.ru>
Sat, 2 Jan 2010 11:19:41 +0000 (14:19 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Sat, 2 Jan 2010 11:19:41 +0000 (14:19 +0300)
schema/versions/mysql/60.sql

index 40d2988a2b525ec936236c107cc76c8c074f5bd9..d1af11a31ad6a3596ab83756a538be7aa4353477 100644 (file)
@@ -13,7 +13,7 @@ create table ttrss_archived_feeds (id integer not null primary key,
 alter table ttrss_user_entries add column orig_feed_id integer;
 update ttrss_user_entries set orig_feed_id = NULL;
 
-alter table ttrss_user_entries add constraint FOREIGN KEY (orig_feed_id) REFERENCES ttrss_archived_feeds(id) ON DELETE SET NULL;
+alter table ttrss_user_entries add FOREIGN KEY (orig_feed_id) REFERENCES ttrss_archived_feeds(id) ON DELETE SET NULL;
 
 update ttrss_version set schema_version = 60;