fix(database): 🚑 Fixed migrations not running on fresh databases

Incorrect SQL data in migrations would cause freshly created database to fail migrations
This commit is contained in:
Jesse Wierzbinski 2024-04-14 13:41:11 -10:00
parent 2e2b91d7a5
commit ac3ef0ea06
No known key found for this signature in database
4 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,6 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"jest.jestCommandLine": "/home/jessew/.bun/bin/bun test",
"jest.rootPath": "."
"jest.rootPath": ".",
"conventionalCommits.scopes": ["database"]
}