Add balance auto reload

Closes #329
This commit is contained in:
Artur Beljajev 2018-09-06 12:09:57 +03:00
parent 19f9a4eb71
commit 62c38d1f99
29 changed files with 660 additions and 16 deletions

View file

@ -0,0 +1,5 @@
class AddRegistrarsSettings < ActiveRecord::Migration
def change
add_column :registrars, :settings, :jsonb, null: false, default: '{}'
end
end