Spaces:
Sleeping
Sleeping
File size: 1,224 Bytes
9ec4f32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import { MigrationInterface, QueryRunner } from "typeorm";
export class CreateRoleEntity1729070527478 implements MigrationInterface {
name = 'CreateRoleEntity1729070527478'
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`CREATE TABLE "role" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "role_name" character varying NOT NULL, "description" character varying, CONSTRAINT "PK_b36bcfe02fc8de3c57a8b2391c2" PRIMARY KEY ("id"))`);
await queryRunner.query(`ALTER TABLE "users" DROP COLUMN "role_id"`);
await queryRunner.query(`ALTER TABLE "users" ADD "role_id" uuid`);
await queryRunner.query(`ALTER TABLE "users" ADD CONSTRAINT "FK_a2cecd1a3531c0b041e29ba46e1" FOREIGN KEY ("role_id") REFERENCES "role"("id") ON DELETE NO ACTION ON UPDATE NO ACTION`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE "users" DROP CONSTRAINT "FK_a2cecd1a3531c0b041e29ba46e1"`);
await queryRunner.query(`ALTER TABLE "users" DROP COLUMN "role_id"`);
await queryRunner.query(`ALTER TABLE "users" ADD "role_id" integer`);
await queryRunner.query(`DROP TABLE "role"`);
}
}
|