* 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
4 lines
126 B
TypeScript
4 lines
126 B
TypeScript
export function generateMigrationName(name?: string): string {
|
|
return `${new Date().getTime()}${name ? `-${name}` : ''}`;
|
|
}
|