From 8769c7625cafd14e6f304601cc99a195e833d38b Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Sat, 13 Aug 2022 17:16:23 +0200 Subject: Fix config table, add plugin events, implement onPreMessageEvent, add http error data field, migrations --- .../postgres/1660404619978-PluginConfigs.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/util/migrations/postgres/1660404619978-PluginConfigs.ts (limited to 'src/util/migrations/postgres') diff --git a/src/util/migrations/postgres/1660404619978-PluginConfigs.ts b/src/util/migrations/postgres/1660404619978-PluginConfigs.ts new file mode 100644 index 00000000..d8a5ab4d --- /dev/null +++ b/src/util/migrations/postgres/1660404619978-PluginConfigs.ts @@ -0,0 +1,22 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class PluginConfigs1660404619978 implements MigrationInterface { + name = 'PluginConfigs1660404619978' + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query(` + CREATE TABLE "plugin_config" ( + "key" character varying NOT NULL, + "value" text, + CONSTRAINT "PK_aa929ece56c59233b85a16f62ef" PRIMARY KEY ("key") + ) + `); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query(` + DROP TABLE "plugin_config" + `); + } + +} -- cgit 1.5.1