rails-stall/stall

View on GitHub
db/migrate/20160629104617_add_active_to_stall_payment_methods.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddActiveToStallPaymentMethods < ActiveRecord::Migration
  def up
    add_column :stall_payment_methods, :active, :boolean, default: true

    PaymentMethod.update_all(active: true)
  end

  def down
    remove_column :stall_payment_methods, :active
  end
end