1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 03:25:57 +00:00

add update script to convert myisam tables to innodb (bump version)

This commit is contained in:
Andrew Dolgov
2013-09-17 14:34:39 +04:00
parent 80c448cb98
commit e596b5a9dd
5 changed files with 17 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
begin;
ALTER TABLE ttrss_counters_cache ENGINE=InnoDB DEFAULT CHARSET=UTF8;
ALTER TABLE ttrss_cat_counters_cache ENGINE=InnoDB DEFAULT CHARSET=UTF8;
ALTER TABLE ttrss_feedbrowser_cache ENGINE=InnoDB DEFAULT CHARSET=UTF8;
update ttrss_version set schema_version = 123;
commit;

View File

@@ -0,0 +1,5 @@
begin;
update ttrss_version set schema_version = 123;
commit;