mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 16:53:09 +02:00
11 lines
338 B
JavaScript
11 lines
338 B
JavaScript
export class removeLatestStatus1672704136584 {
|
|
name = 'removeLatestStatus1672704136584'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "latestStatus"`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "instance" ADD "latestStatus" integer`);
|
|
}
|
|
}
|