summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-17 06:38:24 +0100
committerAndrew Dolgov <[email protected]>2005-11-17 06:38:24 +0100
commit2fb72ab9b4f68964c81b89f09a51ae21193d577c (patch)
treed24270a5fe9690d81cfe39f0304dd435f243dc1e /schema
parent0298fb3f3d6f0d4b918aa816762638c2fd0279a9 (diff)
update mysql schema
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 4e249136c..83a391298 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;