-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db25f7c
commit 2583101
Showing
2 changed files
with
6 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
-- add [email protected] as a user. we set it as champion in dev application properties | ||
/* | ||
INSERT INTO person (id, email, firstname, lastname, version, is_okr_champion) | ||
VALUES (61, '[email protected]', 'Jaya', 'Norris', 1, FALSE); | ||
|
||
*/ | ||
-- map existing users to teams | ||
INSERT INTO person_team (id, version, person_id, team_id, is_team_admin) | ||
-- [email protected] | ||
|
@@ -16,9 +17,10 @@ VALUES (1, 1, 1, 4, TRUE), | |
-- egiman@puzzlech | ||
(6, 1, 41, 4, FALSE), | ||
-- [email protected] | ||
(7, 1, 51, 6, TRUE), | ||
(7, 1, 51, 6, TRUE) | ||
-- [email protected] | ||
(8, 1, 61, 5, TRUE), | ||
(9, 1, 61, 6, FALSE); | ||
-- (8, 1, 61, 5, TRUE), | ||
-- (9, 1, 61, 6, FALSE) | ||
; | ||
|
||
ALTER SEQUENCE sequence_person_team RESTART WITH 1000; |
File renamed without changes.