chore: remove template occurrences

This commit is contained in:
ITQ
2025-12-16 13:34:53 +03:00
parent 7eb44e9bde
commit 7f267f61f4
7 changed files with 3 additions and 44 deletions
@@ -0,0 +1,10 @@
CREATE TABLE IF NOT EXISTS users (
id UUID PRIMARY KEY,
email VARCHAR(255) UNIQUE NOT NULL,
username VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_users_email ON users(email);