From 5e86d7ab9c5200d794c3adb2b422d20a2aefd2ce Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 13 Aug 2022 02:00:50 +0200 Subject: restructure to single project --- .../postgres/1660257815436-CodeCleanup2.ts | 59 ---------------------- 1 file changed, 59 deletions(-) delete mode 100644 util/src/migrations/postgres/1660257815436-CodeCleanup2.ts (limited to 'util/src/migrations/postgres/1660257815436-CodeCleanup2.ts') diff --git a/util/src/migrations/postgres/1660257815436-CodeCleanup2.ts b/util/src/migrations/postgres/1660257815436-CodeCleanup2.ts deleted file mode 100644 index 511c2f5a..00000000 --- a/util/src/migrations/postgres/1660257815436-CodeCleanup2.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { MigrationInterface, QueryRunner } from "typeorm"; - -export class CodeCleanup21660257815436 implements MigrationInterface { - name = 'CodeCleanup21660257815436' - - public async up(queryRunner: QueryRunner): Promise { - await queryRunner.query(` - CREATE TABLE "user_settings" ( - "id" character varying NOT NULL, - "afk_timeout" integer, - "allow_accessibility_detection" boolean, - "animate_emoji" boolean, - "animate_stickers" integer, - "contact_sync_enabled" boolean, - "convert_emoticons" boolean, - "custom_status" text, - "default_guilds_restricted" boolean, - "detect_platform_accounts" boolean, - "developer_mode" boolean, - "disable_games_tab" boolean, - "enable_tts_command" boolean, - "explicit_content_filter" integer, - "friend_source_flags" text, - "gateway_connected" boolean, - "gif_auto_play" boolean, - "guild_folders" text, - "guild_positions" text, - "inline_attachment_media" boolean, - "inline_embed_media" boolean, - "locale" character varying, - "message_display_compact" boolean, - "native_phone_integration_enabled" boolean, - "render_embeds" boolean, - "render_reactions" boolean, - "restricted_guilds" text, - "show_current_game" boolean, - "status" character varying, - "stream_notifications_enabled" boolean, - "theme" character varying, - "timezone_offset" integer, - CONSTRAINT "PK_00f004f5922a0744d174530d639" PRIMARY KEY ("id") - ) - `); - await queryRunner.query(` - ALTER TABLE "guilds" - ADD "premium_progress_bar_enabled" boolean - `); - } - - public async down(queryRunner: QueryRunner): Promise { - await queryRunner.query(` - ALTER TABLE "guilds" DROP COLUMN "premium_progress_bar_enabled" - `); - await queryRunner.query(` - DROP TABLE "user_settings" - `); - } - -} -- cgit 1.5.1