Files
event-demo/migrations/events/V3__init_auth_projection_table.sql
T
flecomte 3c85c344ce
Tests / lint (push) Has been cancelled
Tests / test (push) Has been cancelled
Tests / build (push) Has been cancelled
refactoring: Masive refactor to build the V2
2026-07-30 22:42:56 +02:00

6 lines
132 B
SQL

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