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:
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE users (
|
||||
id BIGSERIAL PRIMARY KEY,
|
||||
name text NOT NULL,
|
||||
age int NOT NULL
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user