summaryrefslogtreecommitdiff
path: root/migration
diff options
context:
space:
mode:
authorInspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com>2021-02-05 19:50:33 -0700
committerGitHub <noreply@github.com>2021-02-06 11:50:33 +0900
commit885f8e18560ea7cc55970f552fae4ae6780213de (patch)
treea7bdff8df153fa6a83d771e2257d4099c3f20761 /migration
parents3ForcePathStyle (#7122) (diff)
downloadsharkey-885f8e18560ea7cc55970f552fae4ae6780213de.tar.gz
sharkey-885f8e18560ea7cc55970f552fae4ae6780213de.tar.bz2
sharkey-885f8e18560ea7cc55970f552fae4ae6780213de.zip
Parse followers audience from followers URI (#7112)
* 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
Diffstat (limited to 'migration')
-rw-r--r--migration/1611354329133-followersUri.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/migration/1611354329133-followersUri.ts b/migration/1611354329133-followersUri.ts
new file mode 100644
index 0000000000..5114418aed
--- /dev/null
+++ b/migration/1611354329133-followersUri.ts
@@ -0,0 +1,16 @@
+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"`);
+ }
+
+}