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