Skip to content

Commit

Permalink
CORE-177: liquibase update (#1598)
Browse files Browse the repository at this point in the history
CORE-69: Update liquibase-core from 4.2.2 to 4.30.0
  • Loading branch information
davidangb authored Nov 19, 2024
1 parent f6d6003 commit 310e575
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ object Dependencies {
val googleStorageLocal: ModuleID =
"com.google.cloud" % "google-cloud-nio" % "0.127.26" % "test" // needed for mocking google cloud storage. Should use same version as wb-libs

val liquibaseCore: ModuleID = "org.liquibase" % "liquibase-core" % "4.2.2"
val liquibaseCore: ModuleID = "org.liquibase" % "liquibase-core" % "4.30.0"

val circeYAML: ModuleID = "io.circe" %% "circe-yaml" % "0.16.0"
val snakeYAML: ModuleID = "org.yaml" % "snakeyaml" % "2.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd">

<changeSet logicalFilePath="dummy" author="mtalbott" id="drop_policy_action_PK">
<dropPrimaryKey tableName="sam_policy_action" constraintName="sam_policy_action_pkey"/>
<validCheckSum>8:d1a7c5eb7d920c6417cf2931a65af191</validCheckSum>
<comment>
Liquibase 4.4+ changed case of constraints. This changeSet has been modified to reflect that; the
validCheckSum is the checksum from when the constraint was all lowercase.
</comment>
<dropPrimaryKey tableName="sam_policy_action" constraintName="SAM_POLICY_ACTION_pkey"/>
</changeSet>

<changeSet logicalFilePath="dummy" author="mtalbott" id="descendant_policy_actions">
Expand All @@ -22,7 +27,12 @@
</changeSet>

<changeSet logicalFilePath="dummy" author="mtalbott" id="drop_policy_role_PK">
<dropPrimaryKey tableName="sam_policy_role" constraintName="sam_policy_role_pkey"/>
<validCheckSum>8:b403ff59915892851c35ab590914c925</validCheckSum>
<comment>
Liquibase 4.4+ changed case of constraints. This changeSet has been modified to reflect that; the
validCheckSum is the checksum from when the constraint was all lowercase.
</comment>
<dropPrimaryKey tableName="sam_policy_role" constraintName="SAM_POLICY_ROLE_pkey"/>
</changeSet>

<changeSet logicalFilePath="dummy" author="mtalbott" id="descendant_policy_roles">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd">

<changeSet logicalFilePath="dummy" author="garwood" id="add_tos_audit_table_created_at_pk">
<dropPrimaryKey tableName= "SAM_USER_TERMS_OF_SERVICE" constraintName="sam_user_terms_of_service_pkey"/>
<validCheckSum>8:2d412b3cac7e1cd4811c012953c8d310</validCheckSum>
<comment>
Liquibase 4.4+ changed case of constraints. This changeSet has been modified to reflect that; the
validCheckSum is the checksum from when the constraint was all lowercase.
</comment>
<dropPrimaryKey tableName= "SAM_USER_TERMS_OF_SERVICE" constraintName="SAM_USER_TERMS_OF_SERVICE_pkey"/>
<addPrimaryKey tableName="SAM_USER_TERMS_OF_SERVICE" columnNames="sam_user_id,version,action,created_at" constraintName="sam_user_terms_of_service_pkey"/>

<createIndex indexName="sam_user_id_tos_idx" tableName="SAM_USER_TERMS_OF_SERVICE">
Expand Down

0 comments on commit 310e575

Please sign in to comment.