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 4 Current »

Highlights:

AAM-1152 - Getting issue details... STATUS

AAM-1165 - Getting issue details... STATUS

Story:

Tasks:

AAM-1152 - Getting issue details... STATUS

AAM-1156 - Getting issue details... STATUS

AAM-1151 - Getting issue details... STATUS

AAM-1151 - Getting issue details... STATUS

AAM-1163 - Getting issue details... STATUS

AAM-1165 - Getting issue details... STATUS

Bug Fixes:

SQL Fixes:

1. For AAM-1163 - Getting issue details... STATUS issue run the following sql fixes:

DO $$
    BEGIN
        IF EXISTS(SELECT *
                  FROM information_schema.columns
                  WHERE table_name='field' and column_name='initial_value')
        THEN
            ALTER TABLE public.field DROP COLUMN IF EXISTS text_placeholder;
        ELSE
            IF EXISTS(SELECT *
                      FROM information_schema.columns
                      WHERE table_name='field' and column_name='text_placeholder')
            THEN
                ALTER TABLE public.field RENAME COLUMN text_placeholder TO initial_value;
            END IF;
        END IF;
    END $$;

How to upgrade:

  1. Upgrade to 1.51

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

  • No labels