diff --git a/components/gitpod-db/src/typeorm/migration/1664275537873-RemoveGeneratedLicenseTable.ts b/components/gitpod-db/src/typeorm/migration/1664275537873-RemoveGeneratedLicenseTable.ts new file mode 100644 index 00000000000000..ec1c55f608bd29 --- /dev/null +++ b/components/gitpod-db/src/typeorm/migration/1664275537873-RemoveGeneratedLicenseTable.ts @@ -0,0 +1,15 @@ +/** + * Copyright (c) 2022 Gitpod GmbH. All rights reserved. + * Licensed under the GNU Affero General Public License (AGPL). + * See License-AGPL.txt in the project root for license information. + */ + +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class RemoveGeneratedLicenseTable1664275537873 implements MigrationInterface { + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query(`DROP TABLE \`d_b_generated_license\``); + } + + public async down(queryRunner: QueryRunner): Promise {} +}