Files
nfeeder/sql/schema.sql
T
jasonhilder f3ccbc95c1 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.
2026-04-23 07:55:40 +02:00

7 lines
108 B
SQL

CREATE TABLE users (
id BIGSERIAL PRIMARY KEY,
name text NOT NULL,
age int NOT NULL
);