This commit is contained in:
Rishabh Saxena 2016-06-15 16:04:03 +00:00 committed by GitHub
commit 96a92670c6
8 changed files with 44 additions and 2 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