found my DB mistakes 💀

This commit is contained in:
cutestnekoaqua 2022-12-07 00:09:12 +01:00
parent ef707b01bc
commit 42ebbec813
2 changed files with 2 additions and 1 deletions

View file

@ -3,7 +3,7 @@ export class addMovedToAndKnownAs1669288094000 {
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "user" ADD "movedToUri" character varying(512)`);
await queryRunner.query(`ALTER TABLE "user" ADD "alsoKnownAs" TEXT []`);
await queryRunner.query(`ALTER TABLE "user" ADD "alsoKnownAs" TEXT`);
await queryRunner.query(`COMMENT ON COLUMN "user"."movedToUri" IS 'The URI of the new account of the User'`);
await queryRunner.query(`COMMENT ON COLUMN "user"."alsoKnownAs" IS 'URIs the user is known as too'`);
}

View file

@ -69,6 +69,7 @@ export class User {
public followingCount: number;
@Column('varchar', {
length: 512,
nullable: true,
comment: 'The URI of the new account of the User',
})