summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1585772678853-ap-url.js
blob: 5fb809ff53e895173fbb30a0a9aea7f1bb23e2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class apUrl1585772678853 {
    constructor() {
        this.name = 'apUrl1585772678853';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "note" ADD "url" character varying(512)`, undefined);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "url"`, undefined);
    }
}