2022-07-02 06:12:11 +00:00
|
|
|
export class fileIp1656122560740 {
|
2023-04-07 01:56:46 +00:00
|
|
|
name = "fileIp1656122560740";
|
2022-07-02 06:12:11 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
async up(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "drive_file" ADD "requestHeaders" jsonb DEFAULT '{}'`,
|
|
|
|
);
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "drive_file" ADD "requestIp" character varying(128)`,
|
|
|
|
);
|
|
|
|
}
|
2022-07-02 06:12:11 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
async down(queryRunner) {
|
|
|
|
await queryRunner.query(`ALTER TABLE "drive_file" DROP COLUMN "requestIp"`);
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "drive_file" DROP COLUMN "requestHeaders"`,
|
|
|
|
);
|
|
|
|
}
|
2022-07-02 06:12:11 +00:00
|
|
|
}
|