Method: AD::Framework::Patterns::Persistence::InstanceMethods#update
- Defined in:
- lib/ad-framework/patterns/persistence.rb
#update ⇒ Object
38 39 40 41 42 43 44 45 |
# File 'lib/ad-framework/patterns/persistence.rb', line 38 def update self.connection.open do |c| self.fields.changes.each do |name, value| c.replace_attribute(self.dn, name, value) end end self.reload end |