mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
03a38fbf1c
* feat: add get custom message text to admin api * feat: read custom message texts from files * feat: get languages in apis * feat: get languages in apis * feat: get languages in apis * feat: pr feedback * feat: docs * feat: merge main
15 lines
265 B
SQL
15 lines
265 B
SQL
CREATE TABLE notification.custom_texts (
|
|
aggregate_id TEXT,
|
|
|
|
creation_date TIMESTAMPTZ,
|
|
change_date TIMESTAMPTZ,
|
|
sequence BIGINT,
|
|
|
|
template TEXT,
|
|
language TEXT,
|
|
key TEXT,
|
|
text TEXT,
|
|
|
|
PRIMARY KEY (aggregate_id, template, key, language)
|
|
);
|