We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26e57e0 commit 46df01aCopy full SHA for 46df01a
components/gitpod-db/src/typeorm/migration/1641287965022-DropDBPaymentSourceInfo.ts
@@ -0,0 +1,18 @@
1
+/**
2
+ * Copyright (c) 2022 Gitpod GmbH. All rights reserved.
3
+ * Licensed under the GNU Affero General Public License (AGPL).
4
+ * See License-AGPL.txt in the project root for license information.
5
+ */
6
+
7
+import {MigrationInterface, QueryRunner} from "typeorm";
8
9
+export class DropDBPaymentSourceInfo1641287965022 implements MigrationInterface {
10
11
+ public async up(queryRunner: QueryRunner): Promise<void> {
12
+ queryRunner.query("DROP TABLE `d_b_payment_source_info`");
13
+ }
14
15
+ public async down(queryRunner: QueryRunner): Promise<void> {
16
17
18
+}
0 commit comments