iceshrimp/packages/backend/src/migration/1596786425167-channel2.ts

17 lines
517 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class channel21596786425167 implements MigrationInterface {
constructor() {
this.name = "channel21596786425167";
}
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "channel_following" ADD "readCursor" TIMESTAMP WITH TIME ZONE NOT NULL`,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "channel_following" DROP COLUMN "readCursor"`,
);
}
}