Sets up internal packages for database and api

This commit is contained in:
Dennis Schoepf 2024-04-28 19:14:51 +02:00
parent b059fa25cb
commit d82a1c9215
4 changed files with 15 additions and 15 deletions

View file

@ -1,7 +1,8 @@
-- +migrate Up
CREATE table users (
id INTEGER PRIMARY KEY,
name text NOT NULL
first_name text NOT NULL,
email text NOT NULL
);
-- +migrate Down