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

6 lines
173 B
Ruby

class AddRetriesToWithdraw < ActiveRecord::Migration[5.2]
def change
add_column :withdraws, :attempts, :integer, default: 0, null: false, after: :aasm_state
end
end