Allow nil values for settings

This commit is contained in:
Karl Erik Õunapuu 2020-08-12 12:08:21 +03:00
parent 49f11cce0b
commit e7eaba7963
3 changed files with 11 additions and 5 deletions

View file

@ -0,0 +1,5 @@
class ChangeSettingEntryValueToAllowNil < ActiveRecord::Migration[6.0]
def change
change_column :setting_entries, :value, :string, null: true
end
end