Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Tasks:

AAM-1151 - Getting issue details... STATUS

SQL Fixes:

  1. For AAM-1151 issue need to perform these SQL fixes:

    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);

How to upgrade:

  1. Upgrade to 1.50

  2. Go to the asta7 directory and run the following script

  • No labels