We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d871fa3 + 78368a6 commit 59c4d7bCopy full SHA for 59c4d7b
_sql/migrations/638-fix-serialized-data.php
@@ -0,0 +1,10 @@
1
+<?php
2
+
3
+class Migrations_Migration638 extends Shopware\Components\Migrations\AbstractMigration
4
+{
5
+ public function up($modus)
6
+ {
7
+ $this->addSql('UPDATE s_core_config_elements SET value = CONCAT(value, ";") WHERE value LIKE "s%" AND value NOT LIKE "%;";');
8
+ $this->addSql('UPDATE s_core_config_values SET value = CONCAT(value, ";") WHERE value LIKE "s%" AND value NOT LIKE "%;";');
9
+ }
10
+}
0 commit comments