Initial commit using sqlc for query generation.

Basic crud ops and join queries to use sqlc, more complex either from
scratch or with a query builder later.
This commit is contained in:
2026-04-23 07:55:40 +02:00
parent f99de930b5
commit f3ccbc95c1
3 changed files with 46 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
CREATE TABLE users (
id BIGSERIAL PRIMARY KEY,
name text NOT NULL,
age int NOT NULL
);