Files
event-demo/migrations/events/V3__init_auth_projection_table.sql
T
flecomte e2d7942c7e
Tests / build (push) Successful in 7m14s
Tests / lint (push) Successful in 8m35s
Tests / test (push) Failing after 11m0s
refactoring: Masive refactor to build the V2
2026-07-30 23:01:50 +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)
);