mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
8 lines
136 B
MySQL
8 lines
136 B
MySQL
|
CREATE TABLE eventstore.assets (
|
||
|
id TEXT,
|
||
|
asset TEXT,
|
||
|
PRIMARY KEY (id)
|
||
|
);
|
||
|
|
||
|
GRANT DELETE ON TABLE eventstore.assets to eventstore;
|