add payment mode to conferences schema

This commit is contained in:
Rishabh Saxena 2016-05-31 21:25:29 +05:30
parent 301ad1c722
commit f14d470738
5 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddPaymentMethodToConferences < ActiveRecord::Migration
def change
add_column :conferences, :payment_method, :string, default: 'offline', null: false
end
end