Initial commit

This commit is contained in:
2025-10-27 14:22:19 +03:00
commit c6e7f13800
23 changed files with 1164 additions and 0 deletions

7
sqlc/schema.sql Normal file
View File

@@ -0,0 +1,7 @@
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
CREATE TABLE IF NOT EXISTS food_items (
guid UUID PRIMARY KEY,
title VARCHAR(50) UNIQUE NOT NULL,
description VARCHAR(500) NOT NULL
);