zitadel/migrations/cockroach/V1.85__messages.sql

50 lines
958 B
MySQL
Raw Normal View History

CREATE TABLE zitadel.projections.mail_templates (
aggregate_id TEXT NOT NULL,
creation_date TIMESTAMPTZ,
change_date TIMESTAMPTZ,
state SMALLINT,
sequence BIGINT,
is_default BOOLEAN,
template BYTES,
PRIMARY KEY (aggregate_id)
);
CREATE TABLE zitadel.projections.message_texts (
aggregate_id TEXT,
creation_date TIMESTAMPTZ,
change_date TIMESTAMPTZ,
state SMALLINT,
sequence BIGINT,
type TEXT,
language TEXT,
title TEXT,
pre_header TEXT,
subject TEXT,
greeting TEXT,
text TEXT,
button_text TEXT,
footer_text TEXT,
PRIMARY KEY (aggregate_id, type, language)
);
CREATE TABLE zitadel.projections.custom_texts (
aggregate_id TEXT,
creation_date TIMESTAMPTZ,
change_date TIMESTAMPTZ,
sequence BIGINT,
is_default BOOLEAN,
template TEXT,
language TEXT,
key TEXT,
text TEXT,
PRIMARY KEY (aggregate_id, template, key, language)
);