From 9f2ffc1076c59c43f77ba068b15261579483f46d Mon Sep 17 00:00:00 2001 From: Eunwoo Choi Date: Tue, 16 May 2023 23:04:55 +0900 Subject: [PATCH] chore: remove sql file (#549) * chore: rename webhook to webhook_url * refactor: remove sql file --- sql/webhook.sql | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 sql/webhook.sql diff --git a/sql/webhook.sql b/sql/webhook.sql deleted file mode 100644 index d87349a..0000000 --- a/sql/webhook.sql +++ /dev/null @@ -1,9 +0,0 @@ --- Webhook 기능 추가를 위한 SQL 쿼리문입니다. -use discordbots; - --- bots TABLE -ALTER TABLE `bots` ADD COLUMN webhook_status INT NOT NULL DEFAULT '1'; - --- servers TABLE -ALTER TABLE `servers` ADD COLUMN webhook TEXT DEFAULT NULL; -ALTER TABLE `servers` ADD COLUMN webhook_status INT NOT NULL DEFAULT '1';