Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 40x 40x 40x | import { MigrationInterface, QueryRunner } from 'typeorm'; import { PoolRetirementEntity } from '@cardano-sdk/projection-typeorm'; export class PoolRetirementTableMigration1682519108361 implements MigrationInterface { static entity = PoolRetirementEntity; async up(queryRunner: QueryRunner): Promise<void> { await queryRunner.query( 'CREATE TABLE "pool_retirement" ("id" bigint NOT NULL, "retire_at_epoch" integer NOT NULL, "stake_pool_id" character(56) NOT NULL, "block_slot" integer NOT NULL, CONSTRAINT "PK_pool_retirement_id" PRIMARY KEY ("id"))' ); await queryRunner.query( 'ALTER TABLE "pool_retirement" ADD CONSTRAINT "FK_pool_retirement_block_slot" FOREIGN KEY ("block_slot") REFERENCES "block"("slot") ON DELETE CASCADE ON UPDATE NO ACTION' ); } async down(queryRunner: QueryRunner): Promise<void> { await queryRunner.query('ALTER TABLE "pool_retirement" DROP CONSTRAINT "FK_pool_retirement_block_slot"'); await queryRunner.query('DROP TABLE "pool_retirement"'); } } |