Skip to content

Commit 05c2756

Browse files
committed
Split permission table names into technical and translatable name
1 parent a6e412f commit 05c2756

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
alter table group_permission
2+
change name technical_name varchar(100) not null comment 'hardcoded names to be used in code';
3+
alter table group_permission
4+
add name_key varchar(100) not null comment 'name key of permission in translation table';
5+
6+
alter table user_group
7+
change name technical_name varchar(100) not null comment 'hardcoded names to be used in code';
8+
alter table user_group
9+
add name_key varchar(100) not null comment 'name key of user group in translation table';

0 commit comments

Comments
 (0)