Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Add seperate unique constraints for hashed_guid and hashed_guid_dob (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
f11h authored Jan 24, 2022
1 parent 8acaee2 commit 1640a9d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/resources/db/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ databaseChangeLog:
- include:
file: changelog/v006-add-index-dob-hashed-guid.yml
relativeToChangelogFile: true
- include:
file: changelog/v007-add-seperate-unique-constraints-for-hashed-guid.yml
relativeToChangelogFile: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
databaseChangeLog:
- changeSet:
id: add-seperate-unique-constraints-for-hashed-guid
author: f11h
changes:
- addUniqueConstraint:
tableName: app_session
columnNames: hashed_guid
- addUniqueConstraint:
tableName: app_session
columnNames: hashed_guid_dob

0 comments on commit 1640a9d

Please sign in to comment.