mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-03-04 22:56:55 +01:00
11 lines
370 B
JavaScript
11 lines
370 B
JavaScript
export class perNoteReactionAcceptance1678164627293 {
|
|
name = 'perNoteReactionAcceptance1678164627293'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "note" ADD "reactionAcceptance" character varying(64)`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "reactionAcceptance"`);
|
|
}
|
|
}
|