diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2018-10-29 14:41:40 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2018-10-29 14:41:40 +0100 |
commit | a523f1c1ba6c67a2a1005f70db0d57fc6482c7d5 (patch) | |
tree | db5d4dae87bb14be8637bf0ec7dc0d2fe357d276 /app | |
parent | 48c802da124ccb44f9602ae05af3bf1d2082a8d0 (diff) | |
download | wallabag-a523f1c1ba6c67a2a1005f70db0d57fc6482c7d5.tar.gz wallabag-a523f1c1ba6c67a2a1005f70db0d57fc6482c7d5.tar.zst wallabag-a523f1c1ba6c67a2a1005f70db0d57fc6482c7d5.zip |
fixup! Debug MySQL failingdropping-php5
Diffstat (limited to 'app')
-rw-r--r-- | app/DoctrineMigrations/Version20181029131313.php | 10 | ||||
-rw-r--r-- | app/config/config.yml | 3 |
2 files changed, 3 insertions, 10 deletions
diff --git a/app/DoctrineMigrations/Version20181029131313.php b/app/DoctrineMigrations/Version20181029131313.php index 328dc80e..47b2f3f4 100644 --- a/app/DoctrineMigrations/Version20181029131313.php +++ b/app/DoctrineMigrations/Version20181029131313.php | |||
@@ -14,20 +14,16 @@ final class Version20181029131313 extends WallabagMigration | |||
14 | { | 14 | { |
15 | public function up(Schema $schema): void | 15 | public function up(Schema $schema): void |
16 | { | 16 | { |
17 | $this->addSql('ALTER TABLE ' . $this->getTable('craue_config_setting') . ' RENAME TO ' . $this->getTable('internal_setting') . ';'); | ||
18 | |||
19 | if ('mysql' === $this->connection->getDatabasePlatform()->getName()) { | 17 | if ('mysql' === $this->connection->getDatabasePlatform()->getName()) { |
20 | $this->addSql('ALTER TABLE ' . $this->getTable('internal_setting') . ' CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'); | 18 | $this->addSql('ALTER TABLE ' . $this->getTable('craue_config_setting') . ' CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'); |
21 | 19 | ||
22 | $this->addSql('ALTER TABLE ' . $this->getTable('internal_setting') . ' CHANGE `name` `name` VARCHAR(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'); | 20 | $this->addSql('ALTER TABLE ' . $this->getTable('craue_config_setting') . ' CHANGE `name` `name` VARCHAR(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'); |
23 | $this->addSql('ALTER TABLE ' . $this->getTable('internal_setting') . ' CHANGE `section` `section` VARCHAR(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'); | 21 | $this->addSql('ALTER TABLE ' . $this->getTable('craue_config_setting') . ' CHANGE `section` `section` VARCHAR(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'); |
24 | } | 22 | } |
25 | } | 23 | } |
26 | 24 | ||
27 | public function down(Schema $schema): void | 25 | public function down(Schema $schema): void |
28 | { | 26 | { |
29 | $this->addSql('ALTER TABLE ' . $this->getTable('internal_setting') . ' RENAME TO ' . $this->getTable('craue_config_setting') . ';'); | ||
30 | |||
31 | if ('mysql' === $this->connection->getDatabasePlatform()->getName()) { | 27 | if ('mysql' === $this->connection->getDatabasePlatform()->getName()) { |
32 | $this->addSql('ALTER TABLE ' . $this->getTable('craue_config_setting') . ' CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;'); | 28 | $this->addSql('ALTER TABLE ' . $this->getTable('craue_config_setting') . ' CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;'); |
33 | 29 | ||
diff --git a/app/config/config.yml b/app/config/config.yml index b2ab0092..092f3ec0 100644 --- a/app/config/config.yml +++ b/app/config/config.yml | |||
@@ -365,6 +365,3 @@ jms_serializer: | |||
365 | sensio_framework_extra: | 365 | sensio_framework_extra: |
366 | router: | 366 | router: |
367 | annotations: false | 367 | annotations: false |
368 | |||
369 | craue_config: | ||
370 | entity_name: Wallabag\CoreBundle\Entity\InternalSetting | ||