Skip to content

Commit b1d4c72

Browse files
committed
cover changes with setup-integration test
1 parent 58dde94 commit b1d4c72

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

dev/tests/setup-integration/_files/Magento/TestSetupDeclarationModule1/etc/db_schema.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
<column xsi:type="longtext" name="longtext"/>
4949
<column xsi:type="mediumtext" name="mediumtext"/>
5050
<column xsi:type="varchar" name="varchar" length="254" nullable="true"/>
51+
<column xsi:type="char" name="char" length="255" nullable="true"/>
5152
<column xsi:type="mediumblob" name="mediumblob"/>
5253
<column xsi:type="blob" name="blob"/>
5354
<column xsi:type="boolean" name="boolean"/>

dev/tests/setup-integration/_files/Magento/TestSetupDeclarationModule1/fixture/valid_xml_revision_1.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,12 @@
199199
'type' => 'mediumtext',
200200
'name' => 'mediumtext',
201201
],
202+
'char' => [
203+
'type' => 'char',
204+
'name' => 'char',
205+
'length' => '255',
206+
'nullable' => 'true',
207+
],
202208
'varchar' => [
203209
'type' => 'varchar',
204210
'name' => 'varchar',

0 commit comments

Comments
 (0)