6 lines
187 B
Ruby
6 lines
187 B
Ruby
class AddConfirmationsToWithdraw < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :withdraws, :confirmations, :integer, limit: 4, default: 0, null: false, after: :rid
|
|
end
|
|
end
|