Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/View/Helper/MigrationHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,10 @@ public function getColumnOption(array $options): array
if (empty($columnOptions['collate'])) {
unset($columnOptions['collate']);
}
// isset() returns false for null values, so this handles both missing and null cases
if (!isset($columnOptions['fixed'])) {
unset($columnOptions['fixed']);
}

// currently only MySQL supports the signed option
$driver = $connection->getDriver();
Expand Down
Loading