22 lines
596 B
SQL
22 lines
596 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE IF NOT EXISTS users(
|
|
id bigserial PRIMARY KEY,
|
|
created_at timestamptz NOT NULL DEFAULT NOW(),
|
|
updated_at timestamptz NOT NULL DEFAULT NOW(),
|
|
deleted_at timestamptz,
|
|
username varchar(255) NOT NULL UNIQUE,
|
|
password varchar(255) NOT NULL,
|
|
roles text[] NOT NULL DEFAULT ARRAY['user'],
|
|
status varchar(50) NOT NULL DEFAULT 'active',
|
|
metas jsonb NOT NULL DEFAULT '{}',
|
|
verified_at timestamptz
|
|
);
|
|
|
|
-- +goose StatementEnd
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE IF EXISTS users;
|
|
|
|
-- +goose StatementEnd
|