feat(database): increase passwordHash length and add migration snapshot

- Extended `passwordHash` field length in `users` schema from 100 to 255.
- Added migration snapshot for schema updates.
This commit is contained in:
Mathis HERRIOT
2026-01-29 21:42:05 +01:00
parent 30bcfdb436
commit c827c2e58d
7 changed files with 4214 additions and 4 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE "users" ALTER COLUMN "password_hash" SET DATA TYPE varchar(255);