-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop pipeline_name unique constraint from user_quotas table (#165)
Co-authored-by: Jose Soto <[email protected]>
- Loading branch information
1 parent
6ab1aa8
commit f42d24d
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
service/src/main/resources/db/changesets/20241121_remove_user_quota_pname_uk.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# remove pipeline_name unique key constraint from the user_quotas table | ||
|
||
databaseChangeLog: | ||
- changeSet: | ||
id: drop user quotas pipeline_name unique constraint | ||
author: js | ||
changes: | ||
- dropUniqueConstraint: | ||
tableName: user_quotas | ||
constraintName: user_quotas_pipeline_name_key | ||
uniqueColumns: pipeline_name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters