summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1680238118084-channelNotePining.js
blob: 126eae87ea2de868c4f750fd8e87fcb27242e452 (plain)
1
2
3
4
5
6
7
8
9
10
11
export class channelNotePining1680238118084 {
    name = 'channelNotePining1680238118084'

    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "channel" ADD "pinnedNoteIds" character varying(128) array NOT NULL DEFAULT '{}'`);
    }

    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "channel" DROP COLUMN "pinnedNoteIds"`);
    }
}