mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-12 13:07:33 -07:00
123e5a5a15
* wip * wip * wip * wip * wip * Update registry.value.vue * wip * wip * wip * wip * typo
14 lines
504 B
TypeScript
14 lines
504 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class registry31610283021566 implements MigrationInterface {
|
|
name = 'registry31610283021566'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "registry_item" ALTER COLUMN "value" DROP NOT NULL`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "registry_item" ALTER COLUMN "value" SET NOT NULL`);
|
|
}
|
|
|
|
}
|