diff --git a/tbot/migrations/20221128_01_rQWlg-twitch-scope-length.py b/tbot/migrations/20221128_01_rQWlg-twitch-scope-length.py new file mode 100644 index 0000000..c1ddd9d --- /dev/null +++ b/tbot/migrations/20221128_01_rQWlg-twitch-scope-length.py @@ -0,0 +1,11 @@ +""" +twitch scope length +""" + +from yoyo import step + +__depends__ = {'20220625_01_wQvKe-spotify-token-length'} + +steps = [ + step("ALTER TABLE twitch_channels CHANGE COLUMN twitch_scope twitch_scope VARCHAR(1000) NULL DEFAULT NULL;") +]