forked from ava-labs/ortelius
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase proposal options column size to fit max len general proposal…
… options (#69)
- Loading branch information
Showing
3 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -30,3 +30,6 @@ vendor | |
.secrets | ||
config.json | ||
.pre-commit-config.yaml | ||
|
||
|
||
build |
2 changes: 2 additions & 0 deletions
2
services/db/migrations/055_increase_proposals_options_len.down.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,2 @@ | ||
ALTER TABLE `dac_proposals` | ||
MODIFY `options` VARBINARY(1024) NOT NULL; |
2 changes: 2 additions & 0 deletions
2
services/db/migrations/055_increase_proposals_options_len.up.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,2 @@ | ||
ALTER TABLE `dac_proposals` | ||
MODIFY `options` VARBINARY(2048) NOT NULL; |