mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 10:57:27 +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;
|