All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m25s
12 lines
278 B
SQL
12 lines
278 B
SQL
-- +goose Up
|
|
create table users (
|
|
id uuid primary uuidv4(),
|
|
email varchar(255) not null unique,
|
|
password varchar(255) not null,
|
|
created_at timestamptz not null default now(),
|
|
updated_at timestamptz not null default now()
|
|
);
|
|
|
|
-- +goose Down
|
|
drop table if exists users;
|