Versions Compared

Key

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

...

AN-1406: As a customer migrating from Asta 5 to Asta 7 I want access codes (tilgangskoder) available in some form in Asta 7 to be able to give the correct access to archives

SQL Fixes:

  1. For AAM-1163: Make it possible to configure default values for fields issue run the following sql fixes:

    Code Block
    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 $$;

Install-package:Install-package:

View file
nameasta7-1.49.1.zip
View file
nameasta7-1.50.2 (1).zip
View file
nameasta7-1.51.4.zip

How to upgrade:

Upgrade from 1.48 to 1.49

  1. Upload the latest PARTICIPANT_MODULE and SECURITY_MODULE templates

  2. Upgrade to 1.49

  3. Go to the asta7 directory and run the script which is given below.

  4. Delete the old PARTICIPANT_MODULE and SECURITY_MODULE templates

  5. Reindex all the projects search data

View file
nameasta7-upgrade-1.49 (1).sh
View file
namePARTICIPANT_MODULE (1).xml
View file
nameSECURITY_MODULE (1).xml

Upgrade from 1.49 to 1.50

  1. Upgrade to 1.50

  2. Go to the asta7 directory and run the script which is given below.

View file
nameasta7-upgrade-1.51.4.zip

...

50.sh

Upgrade from 1.50 to 1.51

  1. Upgrade to 1.51

  2. Go to the asta7 directory and run the following script which is given below.

View file
nameasta7-upgrade-1.51.sh

...