mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-09 10:50:09 +00:00
fix: Custom text split features (#2225)
* fix: separate tier of custom text (message and login) * fix: add migration * fix: build problems * fix: tests * Update internal/api/grpc/admin/features.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/api/grpc/admin/features.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: rename sql file * fix: change sql files * fix: console * fix: console Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
9
migrations/cockroach/V1.62__custom_text_feature.sql
Normal file
9
migrations/cockroach/V1.62__custom_text_feature.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
ALTER TABLE adminapi.features RENAME COLUMN custom_text TO custom_text_message;
|
||||
ALTER TABLE auth.features RENAME COLUMN custom_text TO custom_text_message;
|
||||
ALTER TABLE authz.features RENAME COLUMN custom_text TO custom_text_message;
|
||||
ALTER TABLE management.features RENAME COLUMN custom_text TO custom_text_message;
|
||||
|
||||
ALTER TABLE adminapi.features ADD COLUMN custom_text_login BOOLEAN;
|
||||
ALTER TABLE auth.features ADD COLUMN custom_text_login BOOLEAN;
|
||||
ALTER TABLE authz.features ADD COLUMN custom_text_login BOOLEAN;
|
||||
ALTER TABLE management.features ADD COLUMN custom_text_login BOOLEAN;
|
Reference in New Issue
Block a user