mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
6 lines
216 B
MySQL
6 lines
216 B
MySQL
|
alter table zitadel.projections.features
|
||
|
ADD COLUMN actions_allowed INT2 default 0,
|
||
|
ADD COLUMN max_actions INT8 default 0;
|
||
|
|
||
|
update zitadel.projections.features set actions_allowed = 2 where actions = true;
|