search for: update_network_ipaddresses

Displaying 1 result from an estimated 1 matches for "update_network_ipaddresses".

2006 Mar 30
0
Specify callbacks before associations
...ssociations. Otherwise, you might trigger the loading of a child before the parent has registered the callbacks and they won?t be inherited." Does this mean a model should be defined as: class NetworkSegment < ActiveRecord::Base after_create :create_network_ipaddresses after_update :update_network_ipaddresses has_many :network_ipaddresses, :order => octet4 #... end or class NetworkSegment < ActiveRecord::Base has_many :network_ipaddresses, :order => octet4 after_create :create_network_ipaddresses after_update :update_network_ipaddresses #... end Thanks, -Jer -- Posted via h...