forked from FoundKeyGang/FoundKey
885f8e1856
* add followersUri * add followersUri to audience parse * fetch followersUri * followersUri db migration * update followersUri * Rename 1611354329133-followersUri to 1611354329133-followersUri.ts * typo * Update person.ts * create/update person consistency * Update audience.ts * missing paren * tabs * use strict equality * Update audience.ts
16 lines
843 B
TypeScript
16 lines
843 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class followersUri1611354329133 implements MigrationInterface {
|
|
name = 'followersUri1611354329133'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "user" ADD "followersUri" varchar(512) DEFAULT NULL`);
|
|
await queryRunner.query(`COMMENT ON COLUMN "user"."followersUri" IS 'The URI of the user Follower Collection. It will be null if the origin of the user is local.'`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`COMMENT ON COLUMN "user"."followersUri" IS 'The URI of the user Follower Collection. It will be null if the origin of the user is local.'`);
|
|
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "followersUri"`);
|
|
}
|
|
|
|
}
|