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 6353262 commit 9a86386Copy full SHA for 9a86386
src/Migration/AllowNullMigration.php
@@ -121,6 +121,10 @@ private function fetchNonNullableColumns(): array
121
122
$result = [];
123
foreach ($langColumns as $tableName => $tableColumnNames) {
124
+ if (!$schemaManager->tablesExist([$tableName])) {
125
+ continue;
126
+ }
127
+
128
/** @var Column[] $columns */
129
$columns = [];
130
// The schema manager return the column list with lowercase keys, wo got to use the real names.
0 commit comments