...
For AAM-1151 issue need to perform these SQL fixes:
Code Block alter table organization add if not exists code varchar; update organization set code = replace(upper(name), ' ', '_') where code is null; alter table organization alter column code set not null; create unique index if not exists organization_code_uindex on organization (code);
...