Skip to content

Instantly share code, notes, and snippets.

@jacoyutorius
Last active August 29, 2015 14:27
Show Gist options
  • Select an option

  • Save jacoyutorius/47c428977836fe66560b to your computer and use it in GitHub Desktop.

Select an option

Save jacoyutorius/47c428977836fe66560b to your computer and use it in GitHub Desktop.
Railsのbefore_saveでハマった話 ref: http://qiita.com/jacoyutorius/items/eec1929dc852dd61a0ea
before_save do
self.closed = false
self
end
irb(main):004:0> e = Event.first
irb(main):009:0> e.closed = true
=> true
irb(main):010:0> e.save
(0.5ms) BEGIN
(0.2ms) ROLLBACK
=> false
before_save do
self.closed = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment