Skip to content

Commit df43b67

Browse files
committed
Fix column comment
1 parent 21a118f commit df43b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ClickHouseSchemaManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ protected function _getPortableTableColumnDefinition($tableColumn): Column
137137
'default' => $default,
138138
'notnull' => $notnull,
139139
'autoincrement' => false,
140-
'comment' => $tableColumn['name'] ?? null,
140+
'comment' => $tableColumn['comment'] ?? null,
141141
];
142142

143143
return new Column(

0 commit comments

Comments
 (0)