mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 18:35:21 +02:00
12 lines
370 B
JavaScript
12 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"`);
|
||
|
}
|
||
|
}
|