Skip to content
Snippets Groups Projects
Commit 00d8f161 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

make the schema migration more robust by adding the not-null constraint w/ an...

make the schema migration more robust by adding the not-null constraint w/ an update statement to an interim value.
parent f3b19c92
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,12 @@ databaseChangeLog:
- column:
name: visibility_type
type: varchar(32)
value: sensitive
constraints:
nullable: true
deferrable: false
initiallyDeferred: false
- addNotNullConstraint:
columnDataType: varchar(32)
columnName: visibility_type
defaultNullValue: unset
tableName: metabase_field
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment