Last active
August 29, 2015 14:20
-
-
Save kordero/7ff3eb30a4ac785ca3da to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER TABLE `projects` | |
ADD COLUMN `slack_enabled` TINYINT(1) NOT NULL DEFAULT 0 AFTER `hipchat_enabled`, | |
ADD COLUMN `slack_token` VARCHAR(40) NULL DEFAULT NULL AFTER `slack_enabled`, | |
ADD COLUMN `slack_room` VARCHAR(40) NULL AFTER `slack_token`; | |
ALTER TABLE `projects` | |
DROP COLUMN `hipchat_enabled`, | |
DROP COLUMN `hipchat_color`, | |
DROP COLUMN `hipchat_room`, | |
DROP COLUMN `hipchat_notification_token`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment