diff options
Diffstat (limited to 'dichroism/migrations/2020-10-09-210205_photos/up.sql')
-rw-r--r-- | dichroism/migrations/2020-10-09-210205_photos/up.sql | 5 |
1 files changed, 5 insertions, 0 deletions
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") +) |