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.
1 parent b7f1fb8 commit 6ac0e2bCopy full SHA for 6ac0e2b
src/Migration/Migration1756141645UpdateSeoUrlTemplate.php
@@ -0,0 +1,26 @@
1
+<?php
2
+declare(strict_types=1);
3
+
4
+namespace Werkl\OpenBlogware\Migration;
5
6
+use Doctrine\DBAL\Connection;
7
+use Shopware\Core\Framework\Migration\MigrationStep;
8
9
+class Migration1756141645UpdateSeoUrlTemplate extends MigrationStep
10
+{
11
+ public function getCreationTimestamp(): int
12
+ {
13
+ return 1756141645;
14
+ }
15
16
+ public function update(Connection $connection): void
17
18
+ $connection->executeQuery(
19
+ <<<SQL
20
+ UPDATE `seo_url_template`
21
+ SET `entity_name` = 'werkl_blog_entry'
22
+ WHERE `entity_name` = 'werkl_blog_entries'
23
+ SQL
24
+ );
25
26
+}
0 commit comments