projects
/
tt-rss.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c7070b
)
fix wrong foreign key reference in ttrss_filters for PGSQL
author
Andrew Dolgov
<fox@bah.spb.su>
Mon, 21 Nov 2005 14:04:46 +0000
(15:04 +0100)
committer
Andrew Dolgov
<fox@bah.spb.su>
Mon, 21 Nov 2005 14:04:46 +0000
(15:04 +0100)
schema/ttrss_schema_pgsql.sql
patch
|
blob
|
history
diff --git
a/schema/ttrss_schema_pgsql.sql
b/schema/ttrss_schema_pgsql.sql
index 99174558cb03e077a2059d4be23fc4c59193a017..4a31733671f5cd5ccc570974868278b8801c57a0 100644
(file)
--- a/
schema/ttrss_schema_pgsql.sql
+++ b/
schema/ttrss_schema_pgsql.sql
@@
-83,7
+83,7
@@
insert into ttrss_filter_types (id,name,description) values (4, 'link',
create table ttrss_filters (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,
- feed_id integer references ttrss_f
ilter
s(id) on delete cascade default null,
+ feed_id integer references ttrss_f
eed
s(id) on delete cascade default null,
filter_type integer not null references ttrss_filter_types(id),
reg_exp varchar(250) not null,
description varchar(250) not null default '');