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 52ecafb commit 50bc53cCopy full SHA for 50bc53c
Setup/InstallSchema.php
@@ -14,9 +14,6 @@ class InstallSchema implements InstallSchemaInterface
14
*/
15
public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)
16
{
17
- if ($setup->tableExists('cache_tags')) {
18
- return;
19
- }
20
$setup->startSetup();
21
$setup->getConnection()->createTable($this->getCacheTagTableDefinition($setup));
22
$setup->getConnection()->createTable($this->getCacheRouteTableDefinition($setup));
@@ -109,7 +106,7 @@ private function getCacheRouteTableDefinition(SchemaSetupInterface $setup): \Mag
109
106
->addColumn(
110
107
'cache_route',
111
108
\Magento\Framework\DB\Ddl\Table::TYPE_TEXT,
112
- "2M",
+ 255,
113
['nullable' => false],
114
'Cache Route'
115
)
0 commit comments