This commit is contained in:
2025-09-25 20:25:18 -04:00
commit 80b6f3b902
25 changed files with 1749 additions and 0 deletions

9
schemas/PetPicture.sql Normal file
View File

@@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS PetPictures (
uuid TEXT PRIMARY KEY,
title text,
contributor text,
description text,
created_at integer,
posted integer,
filepath text
);