From 76a782599b4ecc4ecb9b0ce7acc6420ed9e1ec8e Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Tue, 20 Oct 2020 09:50:08 -0400 Subject: back to basics -- working on the most-required functionality first, like handlers --- dichroism/migrations/2020-10-09-210205_photos/down.sql | 1 + dichroism/migrations/2020-10-09-210205_photos/up.sql | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 dichroism/migrations/2020-10-09-210205_photos/down.sql create mode 100644 dichroism/migrations/2020-10-09-210205_photos/up.sql (limited to 'dichroism/migrations/2020-10-09-210205_photos') diff --git a/dichroism/migrations/2020-10-09-210205_photos/down.sql b/dichroism/migrations/2020-10-09-210205_photos/down.sql new file mode 100644 index 0000000..1f9850a --- /dev/null +++ b/dichroism/migrations/2020-10-09-210205_photos/down.sql @@ -0,0 +1 @@ +DROP TABLE "photos" diff --git a/dichroism/migrations/2020-10-09-210205_photos/up.sql b/dichroism/migrations/2020-10-09-210205_photos/up.sql new file mode 100644 index 0000000..0e74ff9 --- /dev/null +++ b/dichroism/migrations/2020-10-09-210205_photos/up.sql @@ -0,0 +1,5 @@ +CREATE TABLE "photos" ( + "id" INTEGER NOT NULL, + "path" TEXT NOT NULL UNIQUE, + PRIMARY KEY("id") +) -- cgit v1.2.3