-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
1 changed file
with
8 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 |
---|---|---|
|
@@ -11,23 +11,23 @@ const SEEDED_DATA = [ | |
email: "[email protected]", | ||
auth_id: "bide", | ||
permission: "Reviewers", | ||
role: "Developer", | ||
role: "Project Developer", | ||
}, | ||
{ | ||
first_name: "Jane", | ||
last_name: "Doe", | ||
email: "[email protected]", | ||
auth_id: "none", | ||
permission: "Reviewers", | ||
role: "Developer", | ||
role: "Project Developer", | ||
}, | ||
{ | ||
first_name: "UW", | ||
last_name: "Blueprint", | ||
email: "[email protected]", | ||
auth_id: "1Z4wyuonu9MhAi4VoAEiTMVj1iT2", | ||
permission: "Reviewers", | ||
role: "Developer", | ||
role: "Project Developer", | ||
}, | ||
]; | ||
// [email protected] | ||
|
@@ -64,7 +64,11 @@ export const up: Migration = async ({ context: sequelize }) => { | |
defaultValue: "Reviewers" | ||
}, | ||
role: { | ||
type: DataType.ENUM("Developer", "Designer"), | ||
type: DataType.ENUM( | ||
"Co-President", "Director Lead", "Internal Director", "External Director", | ||
"VP Engineering", "VP Design", "VP Product", "VP Project Scoping", "VP Finance & Operations", "VP Talent", | ||
"Graphic Designer", "Marketing & Outreach Director", "Product Manager", "Project Lead", "Project Developer", "Product Developer" | ||
), | ||
allowNull: false, | ||
}, | ||
createdAt: DataType.DATE, | ||
|