creating and deleting users

This commit is contained in:
2025-03-11 18:56:12 +02:00
parent 806b27d955
commit 5618aeb439
8 changed files with 132 additions and 34 deletions

View File

@@ -3,7 +3,7 @@ CREATE TABLE users(
id UUID PRIMARY KEY,
created_at TIMESTAMP not null DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP not null DEFAULT CURRENT_TIMESTAMP,
email TEXT not null
email TEXT not null UNIQUE
);
-- +goose Down