Examples (8)
Create databases, load the schema, and initialize with seed data
rails db:setupAccess the database console
Create the databases defined in the current environment
rails db:createDestroy the databases defined in the current environment
rails db:dropRun pending migrations
rails db:migrateView the status of each migration file
rails db:migrate:statusRollback the last migration
rails db:rollbackFill the current database with data defined in `db/seeds.rb`
rails db:seedmade by @shridhargupta | data from tldr-pages