summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-01 15:25:19 +0400
committerAndrew Dolgov <[email protected]>2011-04-01 15:26:02 +0400
commit9507ab7f9272556ab0ea28a3688b995b4a14538a (patch)
treec4ef2f2bfdaf88bfe26aca2e6a90de803ce483fa /schema/ttrss_schema_mysql.sql
parent6110d441831e10547ff8f62243e87f979a5e69c8 (diff)
schema: remove ttrss_themes
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql12
1 files changed, 1 insertions, 11 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 4b528f946..0e1760873 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -32,15 +32,6 @@ drop table if exists ttrss_sessions;
begin;
-create table ttrss_themes(id integer not null primary key auto_increment,
- theme_name varchar(200) not null,
- theme_path varchar(200) not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
-
-insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
-insert into ttrss_themes (theme_name, theme_path) values ('Graycube', 'graycube');
-insert into ttrss_themes (theme_name, theme_path) values ('Default (Compact)', 'compact');
-insert into ttrss_themes (theme_name, theme_path) values ('Three-pane', '3pane');
-
create table ttrss_users (id integer primary key not null auto_increment,
login varchar(120) not null unique,
pwd_hash varchar(250) not null,
@@ -53,8 +44,7 @@ create table ttrss_users (id integer primary key not null auto_increment,
last_digest_sent datetime default null,
created datetime default null,
twitter_oauth longtext default null,
- index (theme_id),
- foreign key (theme_id) references ttrss_themes(id)) TYPE=InnoDB DEFAULT CHARSET=UTF8;
+ index (theme_id)) TYPE=InnoDB DEFAULT CHARSET=UTF8;
insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);