user repository

This commit is contained in:
2025-05-16 11:21:48 -04:00
parent b4b634fd3f
commit 1ffbbcec15
3 changed files with 200 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ CREATE TABLE todo(
);
CREATE TABLE users(
id uuid PRIMARY KEY,
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
email VARCHAR NOT NULL,
hashed_password VARCHAR NOT NULL
);