iceshrimp-legacy/packages/backend/migration/1613155914446-emailNotificationTypes.js
Kainoa Kanter 7fb130b06e formatting
2023-04-06 18:56:46 -07:00

16 lines
454 B
JavaScript

export class emailNotificationTypes1613155914446 {
constructor() {
this.name = "emailNotificationTypes1613155914446";
}
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "user_profile" ADD "emailNotificationTypes" jsonb NOT NULL DEFAULT '["follow","receiveFollowRequest","groupInvited"]'`,
);
}
async down(queryRunner) {
await queryRunner.query(
`ALTER TABLE "user_profile" DROP COLUMN "emailNotificationTypes"`,
);
}
}