Files
event-demo/migrations/events/V3__init_auth_projection_table.sql
T

6 lines
132 B
SQL

create table auth.user (
id uuid not null primary key,
username text not null,
unique(id),
unique(username)
);