about summary refs log tree commit diff
path: root/users/grfn/bbbg/resources/migrations/20211220002229-add-attendee-checks.up.sql
diff options
context:
space:
mode:
Diffstat (limited to 'users/grfn/bbbg/resources/migrations/20211220002229-add-attendee-checks.up.sql')
-rw-r--r--users/grfn/bbbg/resources/migrations/20211220002229-add-attendee-checks.up.sql7
1 files changed, 0 insertions, 7 deletions
diff --git a/users/grfn/bbbg/resources/migrations/20211220002229-add-attendee-checks.up.sql b/users/grfn/bbbg/resources/migrations/20211220002229-add-attendee-checks.up.sql
deleted file mode 100644
index 5e82dcb171..0000000000
--- a/users/grfn/bbbg/resources/migrations/20211220002229-add-attendee-checks.up.sql
+++ /dev/null
@@ -1,7 +0,0 @@
-CREATE TABLE attendee_check (
-    "id" UUID PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
-    "attendee_id" UUID NOT NULL REFERENCES attendee ("id"),
-    "user_id" UUID NOT NULL REFERENCES "public"."user" ("id"),
-    "last_dose_at" DATE,
-    "checked_at" TIMESTAMP WITHOUT TIME ZONE NOT NULL DEFAULT now()
-);