Expand description
Database task orchestration (Rails db:reset/db:setup/db:prepare),
composing the schema/seed primitives.
Functionsยง
- drop_
all_ tables - Drop every user table in a SQLite database.
- prepare
db:prepareโ loadschemaonly if the database has no user tables yet (idempotent).- reset
db:resetโ drop everything, then loadschema.- setup
db:setupโ loadschema, then run the seeder.