Skip to content

Commit

Permalink
[DB] Increase VARCHAR size of columns unsigned_tx, output_owners and …
Browse files Browse the repository at this point in the history
…switch charset to ascii (#63)
  • Loading branch information
knikos authored Feb 23, 2024
1 parent 05035d1 commit ea056a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE multisig_tx MODIFY unsigned_tx VARCHAR(4096) CHARACTER SET utf8mb4;
ALTER TABLE multisig_tx MODIFY output_owners VARCHAR(512) CHARACTER SET utf8mb4;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE multisig_tx MODIFY unsigned_tx VARCHAR(32768) CHARACTER SET ascii;
ALTER TABLE multisig_tx MODIFY output_owners VARCHAR(16384) CHARACTER SET ascii;

0 comments on commit ea056a5

Please sign in to comment.