From: Andrew Dolgov Date: Thu, 17 Nov 2005 05:38:24 +0000 (+0100) Subject: update mysql schema X-Git-Tag: schema_feature_freeze_for_1.1~273 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2fb72ab9b4f68964c81b89f09a51ae21193d577c;p=tt-rss.git update mysql schema --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 4e249136..83a39129 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -91,6 +91,10 @@ create table ttrss_version (schema_version int not null) TYPE=InnoDB; insert into ttrss_version values (2); +drop table ttrss_prefs; +drop table ttrss_prefs_types; +drop table ttrss_prefs_sections; + create table ttrss_prefs_types (id integer primary key, type_name varchar(100) not null) TYPE=InnoDB;