Increase `passwordHash` field length to 100 in the `users` schema to accommodate larger hashes. Add migration snapshot `0005_snapshot.json` to capture database state changes.
1 line
76 B
SQL
1 line
76 B
SQL
ALTER TABLE "users" ALTER COLUMN "password_hash" SET DATA TYPE varchar(100); |