Move register DATABASE_VERSION into schema.sql

Caused migrations being fired when user manually imported database
This commit is contained in:
slawkens
2020-06-06 07:33:05 +02:00
parent 0ad1647930
commit 0e39a969c3
2 changed files with 2 additions and 1 deletions

View File

@@ -57,6 +57,8 @@ CREATE TABLE `myaac_config`
UNIQUE (`name`)
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
INSERT INTO `myaac_config` (`name`, `value`) VALUES ('database_version', 30);
CREATE TABLE `myaac_faq`
(
`id` INT(11) NOT NULL AUTO_INCREMENT,