Fixed 267U.pre2

This commit is contained in:
2026-07-26 18:25:37 +09:00
parent 50bfaeafdf
commit 317d00a284
1286 changed files with 80222 additions and 1 deletions
@@ -0,0 +1,21 @@
export class FEP044f1769148205847 {
name = 'FEP044f1769148205847';
async up(queryRunner) {
await queryRunner.query(`CREATE TYPE "public"."interaction_stamp_type_enum" AS ENUM('quote')`);
await queryRunner.query(`CREATE TABLE "interaction_stamp" ("id" character varying(32) NOT NULL, "type" "public"."interaction_stamp_type_enum" NOT NULL, "targetNoteId" character varying(32) NOT NULL, "noteId" character varying(32) NOT NULL, CONSTRAINT "PK_655e4f52463bd63c126bf8a21bf" PRIMARY KEY ("id"))`);
await queryRunner.query(`CREATE UNIQUE INDEX "IDX_966faaedd04f5bc0e4e7f23b51" ON "interaction_stamp" ("noteId", "targetNoteId") `);
await queryRunner.query(`ALTER TABLE "note" ADD "quoteAuthorization" character varying(512)`);
await queryRunner.query(`ALTER TABLE "note" ADD "canQuote" boolean NOT NULL DEFAULT false`);
await queryRunner.query(`ALTER TABLE "interaction_stamp" ADD CONSTRAINT "FK_5b41539ebe68913e845d32b1a14" FOREIGN KEY ("targetNoteId") REFERENCES "note"("id") ON DELETE CASCADE ON UPDATE NO ACTION`);
await queryRunner.query(`ALTER TABLE "interaction_stamp" ADD CONSTRAINT "FK_f22ecf4fa523296288dfff84c40" FOREIGN KEY ("noteId") REFERENCES "note"("id") ON DELETE CASCADE ON UPDATE NO ACTION`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "interaction_stamp" DROP CONSTRAINT "FK_f22ecf4fa523296288dfff84c40"`);
await queryRunner.query(`ALTER TABLE "interaction_stamp" DROP CONSTRAINT "FK_5b41539ebe68913e845d32b1a14"`);
await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "canQuote"`);
await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "quoteAuthorization"`);
await queryRunner.query(`DROP INDEX "public"."IDX_966faaedd04f5bc0e4e7f23b51"`);
await queryRunner.query(`DROP TABLE "interaction_stamp"`);
await queryRunner.query(`DROP TYPE "public"."interaction_stamp_type_enum"`);
}
}