mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
15 lines
359 B
JavaScript
15 lines
359 B
JavaScript
export class registry31610283021566 {
|
|
constructor() {
|
|
this.name = "registry31610283021566";
|
|
}
|
|
async up(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "registry_item" ALTER COLUMN "value" DROP NOT NULL`,
|
|
);
|
|
}
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "registry_item" ALTER COLUMN "value" SET NOT NULL`,
|
|
);
|
|
}
|
|
}
|