v1.5.4
-
When using Sequel as the primary database library, the generated migration now stores password hashes in the
accounts
table (instead of in a separate table), and creates an integer status column, which is compatible with the generated configuration and consistent with Active Record. -
The generated
accounts.yml
fixture now uses enum string values forstatus
column, e.g. "verified" instead of2
. -
The fixture is now generated in
test/fixtures
instead ofapp/test/fixtures
, and when using RSpec it's generated inspec/fixtures
(thanks to @benkoshy).