Skip to content

Commit 6e6b37a

Browse files
committed
Update timestamp of DB migration
1 parent 2deac15 commit 6e6b37a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/gitpod-db/src/typeorm/migration/1736951418625-AddOrgSettingsCommitAnnotation.ts renamed to components/gitpod-db/src/typeorm/migration/1737714449389-AddOrgSettingsCommitAnnotation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { columnExists } from "./helper/helper";
1010
const table = "d_b_org_settings";
1111
const newColumn = "annotateGitCommits";
1212

13-
export class AddOrgSettingsCommitAnnotation1736951418625 implements MigrationInterface {
13+
export class AddOrgSettingsCommitAnnotation1737714449389 implements MigrationInterface {
1414
public async up(queryRunner: QueryRunner): Promise<void> {
1515
if (!(await columnExists(queryRunner, table, newColumn))) {
1616
await queryRunner.query(`ALTER TABLE ${table} ADD COLUMN ${newColumn} BOOLEAN DEFAULT FALSE`);

0 commit comments

Comments
 (0)