From 826dee68d789789f1bfae20b9aacff89776a469d Mon Sep 17 00:00:00 2001 From: NimbusGD <71958627+NimbusGD@users.noreply.github.com> Date: Fri, 2 Sep 2022 11:06:52 -0500 Subject: [PATCH 1/2] Create down.sql --- 2022-09-02-160618_raw_footage_notes/down.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 2022-09-02-160618_raw_footage_notes/down.sql 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; From fa5b63c9184ec2b87916accb686dc752c2a32f7c Mon Sep 17 00:00:00 2001 From: NimbusGD <71958627+NimbusGD@users.noreply.github.com> Date: Fri, 2 Sep 2022 11:07:11 -0500 Subject: [PATCH 2/2] Create up.sql --- 2022-09-02-160618_raw_footage_notes/up.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 2022-09-02-160618_raw_footage_notes/up.sql 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;