diff options
Diffstat (limited to 'dichroism/src/migrations/photo_sets.sql')
-rw-r--r-- | dichroism/src/migrations/photo_sets.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dichroism/src/migrations/photo_sets.sql b/dichroism/src/migrations/photo_sets.sql new file mode 100644 index 0000000..a27c8ab --- /dev/null +++ b/dichroism/src/migrations/photo_sets.sql @@ -0,0 +1,8 @@ +CREATE TABLE IF NOT EXISTS "photo_sets" ( + "id" INTEGER NOT NULL, + "base" TEXT NOT NULL, + "fullsize" TEXT NOT NULL, + "thumbnail" TEXT NOT NULL, + "original" TEXT NOT NULL, + PRIMARY KEY("id") +);
\ No newline at end of file |