Sets up sqlc

This commit is contained in:
Dennis Schoepf 2024-04-26 22:46:14 +02:00
parent 08c7c1f9fa
commit bdaa5aa59b
6 changed files with 131 additions and 0 deletions

View file

@ -0,0 +1,9 @@
-- +migrate Up
CREATE table users (
id INTEGER PRIMARY KEY,
first_name text NOT NULL,
email text NOT NULL
);
-- +migrate Down
DROP TABLE users;