The migration was trying to copy from `password_digest`, but v1.0.0
databases have the column named `password`. This caused all passwords
to become NULL during migration, preventing users from logging in.
Fixed SELECT to read from `password` instead of `password_digest`.
Fixes#1051