Migrations
Create a new model
class CreateMyModel < ActiveRecord::Migration[6.1]
def change
create_table :my_table do |t|
t.string :name
end
end
end
Rollback multiple steps
Can be achieved using the STEP
variable:
rails db:rollback STEP=2
will roll back the last two migrations
Last updated