From a5cdc9a1f4a38aea4688db5a5f000947b8e60299 Mon Sep 17 00:00:00 2001
From: MeiMei <30769358+mei23@users.noreply.github.com>
Date: Fri, 4 Jun 2021 20:40:47 +0900
Subject: [PATCH] Add missing migrations (#7552)

---
 ...1622679304522-user-profile-description-length.ts | 13 +++++++++++++
 migration/1622681548499-log-message-length.ts       | 12 ++++++++++++
 2 files changed, 25 insertions(+)
 create mode 100644 migration/1622679304522-user-profile-description-length.ts
 create mode 100644 migration/1622681548499-log-message-length.ts

diff --git a/migration/1622679304522-user-profile-description-length.ts b/migration/1622679304522-user-profile-description-length.ts
new file mode 100644
index 0000000000..015d1e24b7
--- /dev/null
+++ b/migration/1622679304522-user-profile-description-length.ts
@@ -0,0 +1,13 @@
+import {MigrationInterface, QueryRunner} from "typeorm";
+
+export class userProfileDescriptionLength1622679304522 implements MigrationInterface {
+	name = 'userProfileDescriptionLength1622679304522';
+
+	public async up(queryRunner: QueryRunner): Promise<void> {
+		await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "description" TYPE character varying(2048)`, undefined);
+	}
+
+	public async down(queryRunner: QueryRunner): Promise<void> {
+		await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "description" TYPE character varying(1024)`, undefined);
+	}
+}
diff --git a/migration/1622681548499-log-message-length.ts b/migration/1622681548499-log-message-length.ts
new file mode 100644
index 0000000000..ef8c33982b
--- /dev/null
+++ b/migration/1622681548499-log-message-length.ts
@@ -0,0 +1,12 @@
+import {MigrationInterface, QueryRunner} from "typeorm";
+
+export class logMessageLength1622681548499 implements MigrationInterface {
+	name = 'logMessageLength1622681548499';
+	public async up(queryRunner: QueryRunner): Promise<void> {
+		await queryRunner.query(`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(2048)`, undefined);
+	}
+
+	public async down(queryRunner: QueryRunner): Promise<void> {
+		await queryRunner.query(`ALTER TABLE "log" ALTER COLUMN "message" TYPE character varying(1024)`, undefined);
+	}
+}
-- 
GitLab