...
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:
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:
How to upgrade:
Upgrade from 1.48 to 1.49
Upload the latest PARTICIPANT_MODULE and SECURITY_MODULE templates
Upgrade to 1.49
Go to the asta7 directory and run the script which is given below.
Delete the old PARTICIPANT_MODULE and SECURITY_MODULE templates
Reindex all the projects search data
View file |
---|
name | asta7-upgrade-1.49 (1).sh |
---|
|
View file |
---|
name | PARTICIPANT_MODULE (1).xml |
---|
|
View file |
---|
name | SECURITY_MODULE (1).xml |
---|
|
Upgrade from 1.49 to 1.50
Upgrade to 1.50
Go to the asta7 directory and run the script which is given below.
View file |
---|
name | asta7-upgrade-1.51.4.zip |
---|
|
...
Upgrade from 1.50 to 1.51
Upgrade to 1.51
Go to the asta7 directory and run the following script which is given below.
View file |
---|
name | asta7-upgrade-1.51.sh |
---|
|
...