No idea where I'm at with this, I think somewhat near the end though

This commit is contained in:
2025-10-18 00:35:28 +01:00
parent a2131623b5
commit f00b8f2bcb
54 changed files with 1635 additions and 2048 deletions

View File

@@ -0,0 +1,18 @@
CREATE TABLE `photo` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`src` text(256) NOT NULL,
`width` integer NOT NULL,
`height` integer NOT NULL,
`blur` blob NOT NULL,
`camera` text(128),
`title` text(128),
`description` text,
`exposureBiasValue` integer,
`fNumber` real,
`isoSpeedRatings` integer,
`focalLength` integer,
`takenAt` integer,
`lensModel` text(128)
);
--> statement-breakpoint
CREATE UNIQUE INDEX `photo_src_unique` ON `photo` (`src`);