Skip to content

Commit 5d9be03

Browse files
easyCZroboquat
authored andcommitted
fix
1 parent da4a9b3 commit 5d9be03

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

components/gitpod-db/src/typeorm/migration/1649107789640-PrebuildStatusVersionColumn.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
import { MigrationInterface, QueryRunner } from "typeorm";
88
import { columnExists } from "./helper/helper";
99

10+
const TABLE_NAME = "d_b_prebuilt_workspace";
11+
const COLUMN_NAME = "statusVersion";
12+
1013
export class PrebuildStatusVersionColumn1649107789640 implements MigrationInterface {
1114
public async up(queryRunner: QueryRunner): Promise<void> {
1215
if (!(await columnExists(queryRunner, TABLE_NAME, COLUMN_NAME))) {

0 commit comments

Comments
 (0)