Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Jira Legacy
serverSystem JIRA
serverId3d53374a-bb19-35fe-ac23-1e9b72bdf813
keyAAM-1163

Bug Fixes:

SQL Fixes:

  1. For

    Jira Legacy
    serverSystem JIRA
    serverId3d53374a-bb19-35fe-ac23-1e9b72bdf813
    keyAAM-1151
    issue run the following sql fixes:

    Code Block
    languagesql
    alter table organization add code varchar;
    update organization set code = replace(upper(name), ' ', '_');
    alter table organization alter column code set not null;
    create unique index organization_code_uindex on organization (code);

21. For

Jira Legacy
serverSystem JIRA
serverId3d53374a-bb19-35fe-ac23-1e9b72bdf813
keyAAM-1163
issue run the following sql fixes:

...