All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 9m41s
8 lines
233 B
SQL
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()
|
|
);
|