jormungandr-bite/packages/backend/src/migration/1680426269172-SpeakAsCat.ts
2023-10-13 18:44:25 +02:00

21 lines
644 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class SpeakAsCat1680426269172 implements MigrationInterface {
name = "SpeakAsCat1680426269172";
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`
ALTER TABLE "user"
ADD "speakAsCat" boolean NOT NULL DEFAULT true
`);
await queryRunner.query(`
COMMENT ON COLUMN "user"."speakAsCat"
IS 'Whether to speak as a cat if isCat.'
`);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`
ALTER TABLE "user" DROP COLUMN "speakAsCat"
`);
}
}