Files
Dena/db/migrate/20180716115113_add_confirmations_to_withdraw.rb
2026-08-13 19:50:53 +03:30

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