mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-28 12:57:31 -07:00
16 lines
504 B
TypeScript
16 lines
504 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
export class registry31610283021566 implements MigrationInterface {
|
|
constructor() {
|
|
this.name = "registry31610283021566";
|
|
}
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "registry_item" ALTER COLUMN "value" DROP NOT NULL`,
|
|
);
|
|
}
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "registry_item" ALTER COLUMN "value" SET NOT NULL`,
|
|
);
|
|
}
|
|
}
|