Add dispute_period_in_months to Setting

This commit is contained in:
Karl Erik Õunapuu 2020-05-05 18:10:51 +03:00
parent 408c7c5c6c
commit 2525f14a18
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddDisputePeriodInMonthsToSetting < ActiveRecord::Migration[5.2]
def change
Setting.create(var: 'dispute_period_in_months', value: 36)
end
end

View file

@ -4515,4 +4515,6 @@ INSERT INTO "schema_migrations" (version) VALUES
('20200203143458'),
('20200204103125'),
('20200311114649'),
('20200421093637');
('20200421093637'),
('20200505150413');