Skip to content

Commit

Permalink
fix(relayer): Error 1406: Data too long for column 'canonical_token_s…
Browse files Browse the repository at this point in the history
…ymbol' at row 1 (#15746)

Co-authored-by: jeff <[email protected]>
  • Loading branch information
xiaodino and cyberhorsey committed Feb 13, 2024
1 parent f9c80f8 commit 34272d7
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- +goose Up
-- +goose StatementBegin
ALTER TABLE `events` MODIFY COLUMN `canonical_token_symbol` VARCHAR(255);
-- +goose StatementEnd

-- +goose Down
-- +goose StatementBegin
ALTER TABLE `events` MODIFY COLUMN `canonical_token_symbol` VARCHAR(10);
-- +goose StatementEnd

0 comments on commit 34272d7

Please sign in to comment.