zitadel/migrations/cockroach/V1.33__unique_tables.sql

7 lines
196 B
MySQL
Raw Normal View History

CREATE TABLE eventstore.unique_constraints (
unique_type TEXT,
unique_field TEXT,
PRIMARY KEY (unique_type, unique_field)
);
GRANT DELETE ON TABLE eventstore.unique_constraints to adminapi;