react-code-dataset / goalert /migrate /migrations /20170503154907-delay-minutes.sql
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
182 Bytes
-- +migrate Up
ALTER TABLE user_notification_rules RENAME COLUMN delay TO delay_minutes;
-- +migrate Down
ALTER TABLE user_notification_rules RENAME COLUMN delay_minutes TO delay;