6 lines
172 B
Ruby
6 lines
172 B
Ruby
|
|
class AddPaymentMethodToConferences < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :conferences, :payment_method, :string, default: 'offline', null: false
|
||
|
|
end
|
||
|
|
end
|