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 dba69d5 + ac05660 commit af3610cCopy full SHA for af3610c
tests/Integration/Database/SchemaBuilderTest.php
@@ -132,9 +132,10 @@ public function testChangeTextColumnToTextColumn()
132
133
$uppercase = strtoupper($type);
134
135
- $expected = ["ALTER TABLE test CHANGE test_column test_column $uppercase NOT NULL"];
136
-
137
- $this->assertEquals($expected, $queries);
+ $this->assertContains($queries, [
+ ["ALTER TABLE test CHANGE test_column test_column $uppercase NOT NULL"], // MySQL
+ ["ALTER TABLE test CHANGE test_column test_column $uppercase NOT NULL COLLATE `utf8mb4_uca1400_ai_ci`"], // MariaDB
138
+ ]);
139
}
140
141
0 commit comments