Skip to content

Commit

Permalink
renamed last V2 scripts to V3
Browse files Browse the repository at this point in the history
  • Loading branch information
clean-coder committed May 7, 2024
1 parent db25f7c commit 2583101
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
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]
Expand All @@ -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;

0 comments on commit 2583101

Please sign in to comment.