diff --git a/2022-09-02-160618_raw_footage_notes/down.sql b/2022-09-02-160618_raw_footage_notes/down.sql new file mode 100644 index 0000000..0c5695c --- /dev/null +++ b/2022-09-02-160618_raw_footage_notes/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` + +ALTER TABLE record_notes DROP COLUMN is_raw_footage; diff --git a/2022-09-02-160618_raw_footage_notes/up.sql b/2022-09-02-160618_raw_footage_notes/up.sql new file mode 100644 index 0000000..f44bb3f --- /dev/null +++ b/2022-09-02-160618_raw_footage_notes/up.sql @@ -0,0 +1,3 @@ +-- Your SQL goes here + +ALTER TABLE record_notes ADD COLUMN is_raw_footage BOOLEAN NOT NULL DEFAULT FALSE;