summaryrefslogtreecommitdiff
path: root/ttrss_schema.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-07 13:42:49 +0100
committerAndrew Dolgov <[email protected]>2005-09-07 13:42:49 +0100
commit4b3dff6ed580a7c5aec8fb50467043962861e0e7 (patch)
tree970e617673c5a9b35233ce3f67dcc5f07423528c /ttrss_schema.sql
parentb6eefba52be4c4846fdecfc4ee97fdf7e123d292 (diff)
updated mysql schema
Diffstat (limited to 'ttrss_schema.sql')
-rw-r--r--ttrss_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttrss_schema.sql b/ttrss_schema.sql
index 2c00b3687..95887acb3 100644
--- a/ttrss_schema.sql
+++ b/ttrss_schema.sql
@@ -56,6 +56,6 @@ insert into ttrss_filter_types (id,name,description) values (3, 'both',
create table ttrss_filters (id serial primary key,
filter_type integer not null references ttrss_filter_types(id),
- regexp varchar(250) not null,
+ reg_exp varchar(250) not null,
description varchar(250) not null default '');