Skip to content

Commit 46df01a

Browse files
geroplroboquat
authored andcommitted
[db] DROPT TABLE d_b_payment_source_info
1 parent 26e57e0 commit 46df01a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)