fix(new): keep upper cased letters in migration file names by default
This commit is contained in:
parent
59a013b0d8
commit
acb0b4f195
3 changed files with 8 additions and 4 deletions
|
|
@ -215,5 +215,4 @@ export const sanitizeMigrationName = (name: string) =>
|
|||
name
|
||||
.replaceAll(/[\W/\\:|*?'"<>_]+/g, '_')
|
||||
.trim()
|
||||
.replace(/^_|_$/, '')
|
||||
.toLocaleLowerCase();
|
||||
.replace(/^_|_$/, '');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue