Last active
July 8, 2016 12:50
-
-
Save terrierscript/42433a3338a2dff41306f260ebdf3e9e to your computer and use it in GitHub Desktop.
Rails5からはもうdefault_value_forは必要ないのかもしれない ref: http://qiita.com/inuscript/items/e98caa8469ed7143404a
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class SomeModel < ActiveRecord::Base | |
| default_value_for :is_public, false | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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