import { MigrationInterface, QueryRunner } from 'typeorm'; export class AddTableOtpVerifier1749043616622 implements MigrationInterface { name = 'AddTableOtpVerifier1749043616622'; public async up(queryRunner: QueryRunner): Promise { await queryRunner.query( `CREATE TABLE "otp_verifier" ("id" uuid NOT NULL DEFAULT uuid_generate_v4(), "creator_id" character varying(36), "creator_name" character varying(125), "editor_id" character varying(36), "editor_name" character varying(125), "created_at" bigint NOT NULL, "updated_at" bigint NOT NULL, "name" character varying, "phone_number" character varying NOT NULL, CONSTRAINT "PK_884e2d0873fc589a1bdc477b2ea" PRIMARY KEY ("id"))`, ); } public async down(queryRunner: QueryRunner): Promise { await queryRunner.query(`DROP TABLE "otp_verifier"`); } }