Skip to content

Commit

Permalink
add roles
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-ng committed Apr 1, 2024
1 parent f9b2b52 commit 2b163af
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 2b163af

Please sign in to comment.