Skip to content

Commit

Permalink
Add column comment (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
asanikovich authored Sep 26, 2024
1 parent fb68269 commit 1272c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ClickHouseSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ protected function _getPortableTableColumnDefinition(array $tableColumn): Column
'default' => $default,
'notnull' => $notnull,
'autoincrement' => false,
'comment' => '',
'comment' => $tableColumn['comment'] ?? null,
];

return new Column(
Expand Down

0 comments on commit 1272c94

Please sign in to comment.