schema: remove ttrss_themes
This commit is contained in:
parent
6110d44183
commit
9507ab7f92
4 changed files with 8 additions and 22 deletions
|
@ -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);
|
||||
|
|
|
@ -30,15 +30,6 @@ drop function SUBSTRING_FOR_DATE(timestamp, int, int);
|
|||
|
||||
begin;
|
||||
|
||||
create table ttrss_themes(id serial not null primary key,
|
||||
theme_name varchar(200) not null,
|
||||
theme_path varchar(200) not null);
|
||||
|
||||
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 serial not null primary key,
|
||||
login varchar(120) not null unique,
|
||||
pwd_hash varchar(250) not null,
|
||||
|
@ -49,8 +40,7 @@ create table ttrss_users (id serial not null primary key,
|
|||
email_digest boolean not null default false,
|
||||
last_digest_sent timestamp default null,
|
||||
twitter_oauth text default null,
|
||||
created timestamp default null,
|
||||
theme_id integer references ttrss_themes(id) default null);
|
||||
created timestamp default null);
|
||||
|
||||
insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
|
||||
'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);
|
||||
|
|
|
@ -24,6 +24,9 @@ update ttrss_feeds set pubsub_state = 0;
|
|||
alter table ttrss_feeds change pubsub_state pubsub_state integer not null;
|
||||
alter table ttrss_feeds alter column pubsub_state set default 0;
|
||||
|
||||
alter table ttrss_users drop column theme_id;
|
||||
drop table ttrss_themes;
|
||||
|
||||
update ttrss_version set schema_version = 83;
|
||||
|
||||
commit;
|
||||
|
|
|
@ -24,6 +24,9 @@ update ttrss_feeds set pubsub_state = 0;
|
|||
alter table ttrss_feeds alter column pubsub_state set not null;
|
||||
alter table ttrss_feeds alter column pubsub_state set default 0;
|
||||
|
||||
alter table ttrss_users drop column theme_id;
|
||||
drop table ttrss_themes;
|
||||
|
||||
update ttrss_version set schema_version = 83;
|
||||
|
||||
commit;
|
||||
|
|
Loading…
Reference in a new issue