From: Andrew Dolgov Date: Tue, 28 May 2013 12:21:19 +0000 (+0400) Subject: schema: fix reinitialization not working for older databases X-Git-Tag: 1.8~59 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=5ddc750427ddb693785b01beb0b9cca0c3138f36;p=tt-rss.git schema: fix reinitialization not working for older databases --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index aa119709..e8d5f64b 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -14,6 +14,7 @@ drop table if exists ttrss_labels; drop table if exists ttrss_filters2_actions; drop table if exists ttrss_filters2_rules; drop table if exists ttrss_filters2; +drop table if exists ttrss_filters; drop table if exists ttrss_filter_types; drop table if exists ttrss_filter_actions; drop table if exists ttrss_user_prefs; diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 79634678..feb5cece 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -11,6 +11,7 @@ drop table if exists ttrss_labels; drop table if exists ttrss_filters2_rules; drop table if exists ttrss_filters2_actions; drop table if exists ttrss_filters2; +drop table if exists ttrss_filters; drop table if exists ttrss_filter_types; drop table if exists ttrss_filter_actions; drop table if exists ttrss_user_prefs;