1.51.0, 1.51.1 - Asta7 Core
Â
Highlights:
https://stiftelsenasta.atlassian.net/browse/AAM-1152
https://stiftelsenasta.atlassian.net/browse/AAM-1165
Story:
Â
Â
Tasks:
https://stiftelsenasta.atlassian.net/browse/AAM-1152
https://stiftelsenasta.atlassian.net/browse/AAM-1156
https://stiftelsenasta.atlassian.net/browse/AAM-1151
https://stiftelsenasta.atlassian.net/browse/AAM-1151
https://stiftelsenasta.atlassian.net/browse/AAM-1163
https://stiftelsenasta.atlassian.net/browse/AAM-1165
Â
Bug Fixes:
Â
Â
SQL Fixes:
1. For https://stiftelsenasta.atlassian.net/browse/AAM-1163 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:
Upgrade to 1.51
Go to the asta7 directory and run the following script
Â