This repository has been archived on 2026-01-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cover-letter-templater/backend/db/migrations.sql
T

8 lines
200 B
SQL
Raw Normal View History

2025-07-03 23:28:01 +03:00
CREATE TABLE IF NOT EXISTS users (
2025-07-05 22:17:14 +03:00
id SERIAL PRIMARY KEY,
2025-07-05 21:11:09 +03:00
email TEXT NOT NULL UNIQUE,
name TEXT NOT NULL,
2025-07-03 23:28:01 +03:00
password TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);