Feat/workspace health core fix (#3863)
* feat: add deletion support on sync metadata command * fix: remove debug * feat: wip workspace health command add --fix option fix: remove test * feat: core of --fix option for workspace-health
This commit is contained in:
@ -1,6 +1,3 @@
|
||||
export function generateMigrationName(
|
||||
name?: string,
|
||||
addMilliseconds: number = 0,
|
||||
): string {
|
||||
return `${new Date().getTime() + addMilliseconds}${name ? `-${name}` : ''}`;
|
||||
export function generateMigrationName(name?: string): string {
|
||||
return `${new Date().getTime()}${name ? `-${name}` : ''}`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user