rhythm-backend/migrations/0001_create_users_table.sql
Dmitri e4c582dabe
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 9m41s
initial db interactions
2026-04-27 23:05:27 +02:00

8 lines
233 B
SQL

create table users (
id uuid primary key default uuidv4(),
email varchar(255) unique not null,
password varchar(255) not null,
created_at timestamptz not null default now(),
updated_at timestamptz not null default now()
);