Browse Source
Task/remove warnings of database seeding process (#5340)
* Remove warnings of database seeding process
* Update changelog
pull/5343/head
Kenrick Tandrian
1 day ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
package.json
-
prisma/seed.mts
|
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Shortened the date in the activities table on mobile |
|
|
|
- Introduced the fuzzy search for the accounts endpoint |
|
|
|
- Refactored the fuzzy search for the holdings of the assistant |
|
|
|
- Eliminated the warnings of the database seeding process |
|
|
|
- Improved the language localization for Polish (`pl`) |
|
|
|
- Improved the language localization for Spanish (`es`) |
|
|
|
|
|
|
|
|
|
@ -212,6 +212,6 @@ |
|
|
|
"node": ">=22.18.0" |
|
|
|
}, |
|
|
|
"prisma": { |
|
|
|
"seed": "node prisma/seed.ts" |
|
|
|
"seed": "node prisma/seed.mts" |
|
|
|
} |
|
|
|
} |
|
|
|