-
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.
Merge pull request #25 from FigureTechnologies/hyperschwartz/allow-dy…
…namic-file-locations-based-on-sql-type Bugfix: SQL Dialect Unique Files
- Loading branch information
Showing
9 changed files
with
13 additions
and
9 deletions.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
...er/src/main/resources/db/migration/memory/V3_0__Remove_Scope_Permissions_Unique_Index.sql
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,3 @@ | ||
-- Remove old index that enforces unique on scope_address/grantee_address/granter_address in preparation for new index | ||
-- in the v3_1 migration. | ||
DROP INDEX IF EXISTS scope_permissions_scope_address_grantee_address_granter_address; |
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
...rc/main/resources/db/migration/postgresql/V3_0__Remove_Scope_Permissions_Unique_Index.sql
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,3 @@ | ||
-- Remove old index that enforces unique on scope_address/grantee_address/granter_address in preparation for new index | ||
-- in the v3_1 migration. | ||
ALTER TABLE scope_permissions DROP CONSTRAINT scope_permissions_scope_address_grantee_address_granter_address; |
3 changes: 3 additions & 0 deletions
3
...er/src/main/resources/db/migration/sqlite/V3_0__Remove_Scope_Permissions_Unique_Index.sql
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,3 @@ | ||
-- Remove old index that enforces unique on scope_address/grantee_address/granter_address in preparation for new index | ||
-- in the v3_1 migration. | ||
DROP INDEX IF EXISTS scope_permissions_scope_address_grantee_address_granter_address; |