mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-12 13:07:33 -07:00
14 lines
462 B
TypeScript
14 lines
462 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class ad21620364649428 implements MigrationInterface {
|
|
name = 'ad21620364649428'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "ad" ADD "ratio" integer NOT NULL DEFAULT '1'`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "ad" DROP COLUMN "ratio"`);
|
|
}
|
|
|
|
}
|