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
2025-07-05 21:11:09 +03:00

10 lines
240 B
SQL

-- Create users table if it doesn't exist
CREATE TABLE IF NOT EXISTS users (
id INT PRIMARY KEY,
email TEXT NOT NULL UNIQUE,
name TEXT NOT NULL,
password TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);