react-code-dataset / goalert /migrate /migrations /20170725105059-rotations-shift-length-check.sql
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
157 Bytes
-- +migrate Up
ALTER TABLE rotations ADD CHECK (shift_length > 0);
-- +migrate Down
ALTER TABLE rotations DROP CONSTRAINT rotations_shift_length_check;