From 266bb0a07b11833018301b739c1f655203e28103 Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 29 Aug 2021 15:52:49 -0300 Subject: [PATCH] migrations: add 11_user_bio_and_accent_color --- manage/cmd/migration/scripts/11_user_bio_and_accent_color.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 manage/cmd/migration/scripts/11_user_bio_and_accent_color.sql diff --git a/manage/cmd/migration/scripts/11_user_bio_and_accent_color.sql b/manage/cmd/migration/scripts/11_user_bio_and_accent_color.sql new file mode 100644 index 0000000..dc7878b --- /dev/null +++ b/manage/cmd/migration/scripts/11_user_bio_and_accent_color.sql @@ -0,0 +1,3 @@ +ALTER TABLE users + ADD COLUMN accent_color INT DEFAULT NULL, + ADD COLUMN bio TEXT DEFAULT '' NOT NULL;