]> git.wh0rd.org - tt-rss.git/commitdiff
update mysql schema
authorAndrew Dolgov <fox@madoka.spb.ru>
Thu, 17 Nov 2005 05:38:24 +0000 (06:38 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Thu, 17 Nov 2005 05:38:24 +0000 (06:38 +0100)
schema/ttrss_schema_mysql.sql

index 4e249136c2402a75268987d836b5222abb2551ab..83a3912980d9001329e2066069c9037464c85041 100644 (file)
@@ -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;