-
Notifications
You must be signed in to change notification settings - Fork 805
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change
workflow_id
from varchar 255 to text in cadence_visibility d…
…atabasae
- Loading branch information
1 parent
7ec4149
commit 62d6382
Showing
5 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"CurrVersion": "0.6", | ||
"MinCompatibleVersion": "0.6", | ||
"Description": "Update type of workflow_id to text to remove length restriction", | ||
"Description": "update type of workflow_id to text to remove length restriction", | ||
"SchemaUpdateCqlFiles": [ | ||
"executions_workflow_id.sql" | ||
"extend_workflow_id_length.sql" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
schema/postgres/visibility/versioned/v0.8/extend_workflow_id_length.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE executions_visibility ALTER workflow_id TYPE TEXT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"CurrVersion": "0.8", | ||
"MinCompatibleVersion": "0.8", | ||
"Description": "update type of workflow_id to text to remove length restriction", | ||
"SchemaUpdateCqlFiles": [ | ||
"extend_workflow_id_length.sql" | ||
] | ||
} |