summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/63.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-04 08:30:52 +0300
committerAndrew Dolgov <[email protected]>2021-03-04 08:30:52 +0300
commitc0fb0a5ec04c064bb848534185b51c5d1b7bdaaf (patch)
tree1023912c25fb14a917d0ff23d21bc6b72c73bef0 /schema/versions/mysql/63.sql
parent921569e5da6c3ccbf203506a243cbf499432ec15 (diff)
wip for db_migrations for core schema
Diffstat (limited to 'schema/versions/mysql/63.sql')
-rw-r--r--schema/versions/mysql/63.sql18
1 files changed, 0 insertions, 18 deletions
diff --git a/schema/versions/mysql/63.sql b/schema/versions/mysql/63.sql
deleted file mode 100644
index 26b7126e7..000000000
--- a/schema/versions/mysql/63.sql
+++ /dev/null
@@ -1,18 +0,0 @@
-begin;
-
-create table ttrss_settings_profiles(id integer primary key auto_increment,
- title varchar(250) not null,
- owner_uid integer not null,
- index (owner_uid),
- foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB;
-
-alter table ttrss_user_prefs add column profile integer;
-update ttrss_user_prefs set profile = NULL;
-
-alter table ttrss_user_prefs add FOREIGN KEY (profile) REFERENCES ttrss_settings_profiles(id) ON DELETE CASCADE;
-
-insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_THEME_ID', 3, '0', '', 1);
-
-update ttrss_version set schema_version = 63;
-
-commit;