File tree 2 files changed +4
-4
lines changed
packages/twenty-server/src
database/commands/upgrade-version-command
engine/core-modules/twenty-config
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ type VersionCommands = {
31
31
description : 'Upgrade workspaces to the latest version' ,
32
32
} )
33
33
export class UpgradeCommand extends UpgradeCommandRunner {
34
- fromWorkspaceVersion = new SemVer ( '0.44 .0' ) ;
34
+ fromWorkspaceVersion = new SemVer ( '0.50 .0' ) ;
35
35
private commands : VersionCommands ;
36
36
37
37
constructor (
@@ -82,17 +82,17 @@ export class UpgradeCommand extends UpgradeCommandRunner {
82
82
afterSyncMetadata : [ ] ,
83
83
} ;
84
84
85
- const commands_050 : VersionCommands = {
85
+ const _commands_050 : VersionCommands = {
86
86
beforeSyncMetadata : [ ] ,
87
87
afterSyncMetadata : [ ] ,
88
88
} ;
89
89
90
- const _commands_051 : VersionCommands = {
90
+ const commands_051 : VersionCommands = {
91
91
beforeSyncMetadata : [ this . upgradeCreatedByEnumCommand ] ,
92
92
afterSyncMetadata : [ ] ,
93
93
} ;
94
94
95
- this . commands = commands_050 ;
95
+ this . commands = commands_051 ;
96
96
}
97
97
98
98
override async runBeforeSyncMetadata ( args : RunOnWorkspaceArgs ) {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments