diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-08 18:59:27 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-08 18:59:27 +1000 |
commit | d6df92d01fdc036c226241b695bf1cef9c65981d (patch) | |
tree | 9d15dba6911f99864d3f2f6ac9963b47ab0d98ae | |
parent | Merge pull request #881 from fosscord/fix/notes_pr_broke_somehow (diff) | |
download | server-d6df92d01fdc036c226241b695bf1cef9c65981d.tar.xz |
migrations for notes pr
-rw-r--r-- | src/util/migrations/mariadb/1662626234189-notes.ts | 14 | ||||
-rw-r--r-- | src/util/migrations/postgres/1662626234189-notes.ts | 14 | ||||
-rw-r--r-- | src/util/migrations/sqlite/1662626234189-notes.ts | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/src/util/migrations/mariadb/1662626234189-notes.ts b/src/util/migrations/mariadb/1662626234189-notes.ts new file mode 100644 index 00000000..57aaecbd --- /dev/null +++ b/src/util/migrations/mariadb/1662626234189-notes.ts @@ -0,0 +1,14 @@ +import { MigrationInterface, QueryRunner, TableColumn } from "typeorm"; + +export class notes1662626234189 implements MigrationInterface { + name = 'notes1662626234189' + + public async up(queryRunner: QueryRunner): Promise<void> { + await queryRunner.dropColumn("users", "notes"); + } + + public async down(queryRunner: QueryRunner): Promise<void> { + await queryRunner.addColumn("users", new TableColumn({ name: "notes", type: "simple-json" })); + } + +} diff --git a/src/util/migrations/postgres/1662626234189-notes.ts b/src/util/migrations/postgres/1662626234189-notes.ts new file mode 100644 index 00000000..57aaecbd --- /dev/null +++ b/src/util/migrations/postgres/1662626234189-notes.ts @@ -0,0 +1,14 @@ +import { MigrationInterface, QueryRunner, TableColumn } from "typeorm"; + +export class notes1662626234189 implements MigrationInterface { + name = 'notes1662626234189' + + public async up(queryRunner: QueryRunner): Promise<void> { + await queryRunner.dropColumn("users", "notes"); + } + + public async down(queryRunner: QueryRunner): Promise<void> { + await queryRunner.addColumn("users", new TableColumn({ name: "notes", type: "simple-json" })); + } + +} diff --git a/src/util/migrations/sqlite/1662626234189-notes.ts b/src/util/migrations/sqlite/1662626234189-notes.ts new file mode 100644 index 00000000..57aaecbd --- /dev/null +++ b/src/util/migrations/sqlite/1662626234189-notes.ts @@ -0,0 +1,14 @@ +import { MigrationInterface, QueryRunner, TableColumn } from "typeorm"; + +export class notes1662626234189 implements MigrationInterface { + name = 'notes1662626234189' + + public async up(queryRunner: QueryRunner): Promise<void> { + await queryRunner.dropColumn("users", "notes"); + } + + public async down(queryRunner: QueryRunner): Promise<void> { + await queryRunner.addColumn("users", new TableColumn({ name: "notes", type: "simple-json" })); + } + +} |