Skip to content

Instantly share code, notes, and snippets.

@terrierscript
Last active July 8, 2016 12:50
Show Gist options
  • Select an option

  • Save terrierscript/42433a3338a2dff41306f260ebdf3e9e to your computer and use it in GitHub Desktop.

Select an option

Save terrierscript/42433a3338a2dff41306f260ebdf3e9e to your computer and use it in GitHub Desktop.
Rails5からはもうdefault_value_forは必要ないのかもしれない ref: http://qiita.com/inuscript/items/e98caa8469ed7143404a
class SomeModel < ActiveRecord::Base
default_value_for :is_public, false
end
class SomeModel < ActiveRecord::Base
attribute :some_flag, :boolean, default: -> { false }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment