Files
event-demo/migrations/events/V2__init_auth_event_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

8 lines
238 B
SQL

create schema auth;
create table auth.user_event_stream (
id uuid not null primary key,
aggregate_id uuid not null,
version int not null,
data jsonb not null,
unique(aggregate_id, version)
);