2022-03-07 12:20:14 +00:00
|
|
|
export class removeInstanceDriveColumns1646655454495 {
|
2023-04-07 01:56:46 +00:00
|
|
|
name = "removeInstanceDriveColumns1646655454495";
|
2022-03-07 12:20:14 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
async up(queryRunner) {
|
|
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "driveUsage"`);
|
|
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "driveFiles"`);
|
|
|
|
}
|
2022-03-07 12:20:14 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
async down(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "instance" ADD "driveFiles" integer NOT NULL DEFAULT '0'`,
|
|
|
|
);
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "instance" ADD "driveUsage" bigint NOT NULL DEFAULT '0'`,
|
|
|
|
);
|
|
|
|
}
|
2022-03-07 12:20:14 +00:00
|
|
|
}
|