Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JanJakes committed Jan 7, 2025
1 parent 665d8bc commit 90f1f29
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -774,10 +774,10 @@ private function extract_column_constraint_data( string $table_name, string $col
'packed' => null, // not implemented
'nullable' => true === $nullable ? 'YES' : '',
'index_type' => 'BTREE',
'comment' => '', // not implemented
'index_comment' => '', // @TODO
'is_visible' => 'YES', // @TODO: Save actual visibility value.
'expression' => null, // @TODO
'comment' => '', // not implemented
'index_comment' => '', // inline constraints cannot have comments
'is_visible' => 'YES', // inline constraints are always created visible
'expression' => null, // @TODO
);
}
return null;
Expand Down

0 comments on commit 90f1f29

Please sign in to comment.