-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DAT-14267: add liquibase-github-action to update mssql database #534
Conversation
feat(mssql.sql): add liquibase changeset to add lbuser and grant db_owner role to it
I am getting:
It is failing in the |
@jandroav we should try to move away from the all-in-one Github action since it's deprecated https://github.com/liquibase-github-actions/update is what we want to use instead |
fix(gcp.yml): change 'changeLogFile' to 'changelogFile' in liquibase-github-action configuration
@jnewton03 Changed and run a build with Also added
|
…up job fix(mssql.sql): set failOnError flag to false in the Liquibase changeset 1
@jandroav would a cleaner solution be to check if the user already exists first? Something like:
|
…role already exist before creating them
It seems not necessary and I can see it is working fine now. thanks! |
so should this pr be closed and ticket moved to done? |
Bumps ojdbc8 from 21.9.0.0 to 23.2.0.0. --- updated-dependencies: - dependency-name: com.oracle.database.jdbc:ojdbc8 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [liquibase-github-actions/drop-all](https://github.com/liquibase-github-actions/drop-all) from 4.20.0 to 4.21.1. - [Release notes](https://github.com/liquibase-github-actions/drop-all/releases) - [Commits](liquibase-github-actions/drop-all@v4.20.0...v4.21.1) --- updated-dependencies: - dependency-name: liquibase-github-actions/drop-all dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
…teTest as a default test suite (#538) * DAT-14478. replaced AdvancedHarnessSuiteTest with LiquibaseHarnessSuiteTest as a default test suite * DAT-14478. refactored AdvancedHarnessSuiteTest to use older version of advanced test * DAT-14478. reverted last commit * DAT-14478. removed unused imports
…teTest as a default test suite. Fixes in test data for mssql:gcp. (#539) * DAT-14478. replaced AdvancedHarnessSuiteTest with LiquibaseHarnessSuiteTest as a default test suite * DAT-14478. refactored AdvancedHarnessSuiteTest to use older version of advanced test * DAT-14478. reverted last commit * DAT-14478. removed unused imports * DAT-14478. changed init.sql for gcp mssql instance * DAT-14478. changed init.sql for gcp mssql instance * DAT-14478. fixed test data for gcp mssql harness suite * DAT-14478. renamed mssql:2019 to mssql:gcp * DAT-14478. small fix * DAT-14478. small fix * DAT-14478. fix in expeted sql for mssql gcp * DAT-14478. fix in expeted sql for mssql gcp
Bumps [snowflake-jdbc](https://github.com/snowflakedb/snowflake-jdbc) from 3.13.29 to 3.13.30. - [Release notes](https://github.com/snowflakedb/snowflake-jdbc/releases) - [Changelog](https://github.com/snowflakedb/snowflake-jdbc/blob/master/CHANGELOG.rst) - [Commits](snowflakedb/snowflake-jdbc@v3.13.29...v3.13.30) --- updated-dependencies: - dependency-name: net.snowflake:snowflake-jdbc dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
fix(mssql.sql): add newline at end of file
…role already exist before creating them
…angelog feat(gcp.yml): add lbuser creation and db_owner role assignment in mssql.sql changelog
After fixing branch conflicts we need to merge our already tested change:
@PavloTytarchuk I could see GCP |
@jandroav looking at this issue with @PavloTytarchuk we discovered most likely that dropAll doesn't work because of different schemas |
feat(mssql.sql): add liquibase changeset to add lbuser and grant db_owner role to it
DAT-14267