feat: implemented initial login command

This commit is contained in:
Stevan Freeborn
2026-07-31 08:06:29 -05:00
commit 55a4a1285d
8 changed files with 252 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
-- TODO: Finish writing SQL migration
-- for users table
-- +goose Up
CREATE TABLE users (
id UUID
);
-- +goose Down
DROP TABLE users;