From 7381a7033231e6454a37fd64b1f3de4e8d59355f Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Wed, 11 Nov 2020 20:07:12 -0500 Subject: Kind of flailing with the UI; lots of API bugfixes though. --- dichroism/migrations/2020-10-23-010929_products/up.sql | 5 ++--- dichroism/migrations/2020-11-07-130734_categories/down.sql | 1 - dichroism/migrations/2020-11-07-130734_categories/up.sql | 5 ----- 3 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 dichroism/migrations/2020-11-07-130734_categories/down.sql delete mode 100644 dichroism/migrations/2020-11-07-130734_categories/up.sql (limited to 'dichroism/migrations') diff --git a/dichroism/migrations/2020-10-23-010929_products/up.sql b/dichroism/migrations/2020-10-23-010929_products/up.sql index 72a7750..36e3a82 100644 --- a/dichroism/migrations/2020-10-23-010929_products/up.sql +++ b/dichroism/migrations/2020-10-23-010929_products/up.sql @@ -6,8 +6,7 @@ CREATE TABLE "products" ( "name" TEXT NOT NULL, "description" TEXT NOT NULL, "featured" INTEGER NOT NULL, - "category" INTEGER NOT NULL, + "category" TEXT NOT NULL, PRIMARY KEY("id"), - FOREIGN KEY("photo_set") REFERENCES "photo_sets"("id"), - FOREIGN KEY("category") REFERENCES "categories"("id") + FOREIGN KEY("photo_set") REFERENCES "photo_sets"("id") ) diff --git a/dichroism/migrations/2020-11-07-130734_categories/down.sql b/dichroism/migrations/2020-11-07-130734_categories/down.sql deleted file mode 100644 index 68ea5a7..0000000 --- a/dichroism/migrations/2020-11-07-130734_categories/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE "categories" diff --git a/dichroism/migrations/2020-11-07-130734_categories/up.sql b/dichroism/migrations/2020-11-07-130734_categories/up.sql deleted file mode 100644 index 1bdd50d..0000000 --- a/dichroism/migrations/2020-11-07-130734_categories/up.sql +++ /dev/null @@ -1,5 +0,0 @@ -CREATE TABLE "categories" ( - "id" INTEGER NOT NULL, - "path" TEXT NOT NULL UNIQUE, - PRIMARY KEY("id") -) -- cgit v1.2.3