1.47.0 - Asta7 Core
Highlights:
https://stiftelsenasta.atlassian.net/browse/AAM-1123
Tasks:
https://stiftelsenasta.atlassian.net/browse/AAM-1123
https://stiftelsenasta.atlassian.net/browse/AAM-1126
https://stiftelsenasta.atlassian.net/browse/AAM-1134
SQL Fixes:
For AAM-1123
CREATE EXTENSION IF NOT EXISTS ltree;
do $$
declare
r record;
begin
for r in select id FROM project where archive_initialized = true
loop
execute 'create table if not exists ' || r.id || '.am_ancestor_tree
(
amids ltree,
entity_names ltree,
amid uuid,
entity text
);';
execute 'create index index_ancestor_table_amids_gist on ' || r.id ||
'.am_ancestor_tree using gist (amids);';
execute 'create index index_ancestor_table_amid on ' || r.id ||
'.am_ancestor_tree (amid);';
end loop;
end
$$
How to upgrade
Upgrade to 1.47
Go to the asta7 directory and run the following script
Configuration:
Â