summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1673812883772-firstRetrievedAt.js
blob: 5603bbc7c4c019364c3cfc2e3a0ac179e03730aa (plain)
1
2
3
4
5
6
7
8
9
10
11
export class firstRetrievedAt1673812883772 {
    name = 'firstRetrievedAt1673812883772'

    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "instance" RENAME COLUMN "caughtAt" TO "firstRetrievedAt"`);
    }

    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "instance" RENAME COLUMN "firstRetrievedAt" TO "caughtAt"`);
    }
}