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

6 lines
134 B
Ruby

class AddErrorToWithdraw < ActiveRecord::Migration[5.2]
def change
add_column :withdraws, :error, :json, after: :note
end
end