rails generate migration DropTablename
A file will be created, in the db > migrate folder, make sure it looks like:
class DropUsers < ActiveRecord::Migration
def change
drop_table :users
end
end
rails d model user
rails d controller users
be rake db:migrate
Ha perfect! Thanks for this. I find myself looking this type of stuff up constantly, this was exactly what I needed 👍