-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure every account has exactly one default dashboard #3236
Merged
johannaengland
merged 3 commits into
master
from
bugfix/clean-dashboards-to-one-default
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Ensure that each account has exactly one default dashboard |
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,20 @@ | ||
-- This migration is to ensure that for accounts that don't have a default | ||
-- dashboard we set a default dashboard | ||
|
||
-- This part finds the row with the lowest id for any account that does not | ||
-- have a default dashboard | ||
WITH CTE AS ( | ||
SELECT MIN(id) as id | ||
FROM account_dashboard a | ||
WHERE NOT EXISTS ( | ||
SELECT 1 | ||
FROM account_dashboard b | ||
WHERE a.account_id = b.account_id | ||
AND b.is_default = TRUE | ||
) | ||
GROUP BY account_id | ||
) | ||
-- And this part sets is_default for that row to true | ||
UPDATE account_dashboard | ||
SET is_default = TRUE | ||
WHERE id IN (SELECT id FROM CTE); |
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,21 @@ | ||
-- This migration is to ensure that for accounts that have more than one | ||
-- default dashboard we set is_default to false for all except for one | ||
|
||
UPDATE account_dashboard | ||
SET is_default = FALSE | ||
WHERE id NOT IN ( | ||
-- This part finds the lowest id of the default dashboards for each | ||
-- account_id | ||
SELECT MIN(id) | ||
FROM account_dashboard | ||
WHERE is_default = TRUE | ||
GROUP BY account_id | ||
) | ||
AND account_id IN ( | ||
-- This part finds all account_ids that have more than one default dashboard | ||
SELECT account_id | ||
FROM account_dashboard | ||
WHERE is_default = TRUE | ||
GROUP BY account_id | ||
HAVING COUNT(account_id) > 1 | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just leaving a quick comment before the weekend: This is the weakness of NAV's homegrown migration system: This migration file will conflict with #3231. One of us needs to change our PR accordingly :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, let's see who it will be 😅