Activity overview
Latest activity by nutmix
where can I download flyway desktop 7.2.4?
Any version newer than 7.2.4 does not work for us, and having spent considerable time on the forums, there is no solution.We need more of our team to install the working version (7.2.4). Any ideas...
FYI, we solved the issue by uninstalling 7.3.6 and installing 7.2.0. Now we can open existing projects and new projects without java errors. Interestingly, if I run the command console and type "flyway info" I just get: Flyway community edition 10.11.1 / comments
FYI, we solved the issue by uninstalling 7.3.6 and installing 7.2.0. Now we can open existing projects and new projects without java errors.Interestingly, if I run the command console and type "fl...
I resolved the issue by uninstalling 7.3.6 and going back to 7.2.4. Now I can open existing projects and create new projects. We were lucky one developer still had a copy of the old installer. From now on we will keep a library of old versions in case we need to revert. / comments
I resolved the issue by uninstalling 7.3.6 and going back to 7.2.4. Now I can open existing projects and create new projects. We were lucky one developer still had a copy of the old installer. Fr...
Unfortunately enterprise version is completely out of reach, but this does seem to work on free version:
do $$ BEGIN
if (select 1 from pg_catalog.pg_user p where p.usename = 'rdsadmin') then
CREATE EXTENSION IF NOT EXISTS aws_s3 WITH SCHEMA public;
end if;
end $$;
/ comments
Unfortunately enterprise version is completely out of reach, but this does seem to work on free version:
do $$ BEGIN
if (select 1 from pg_catalog.pg_user p where p.usename = 'rdsadmin') then
CREA...
conditional application of SQL
I cant find any documentation on what can and cant go into a DB change script, but coming from liquibase, I am sure there is a way to conditionally apply SQL based on params or env prams, I just ca...