-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
importer: rgl: Support combining teams
Add support for combining teams that have been linked after already having been imported. This occasionally happens by request. Signed-off-by: Sean Anderson <[email protected]>
- Loading branch information
Showing
4 changed files
with
74 additions
and
13 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
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
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,8 @@ | ||
BEGIN; | ||
ALTER TABLE team_player | ||
ALTER CONSTRAINT team_player_league_teamid_fkey DEFERRABLE, | ||
ALTER CONSTRAINT team_player_league_teamid_compid_fkey DEFERRABLE; | ||
ALTER TABLE match | ||
ALTER CONSTRAINT match_league_compid_teamid1_fkey DEFERRABLE, | ||
ALTER CONSTRAINT match_league_compid_teamid2_fkey DEFERRABLE; | ||
COMMIT; |
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