Skip to content

Commit

Permalink
nullify dependents when destroying configuration_script_sources and c…
Browse files Browse the repository at this point in the history
…onfiguration_scripts

ManageIQ#14432
  • Loading branch information
jameswnl committed Apr 3, 2017
1 parent 518763e commit ff08d81
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app/models/configuration_script_base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ class ConfigurationScriptBase < ApplicationRecord
belongs_to :manager, :class_name => "ExtManagementSystem"

belongs_to :parent, :class_name => "ConfigurationScriptBase"
has_many :children, :class_name => "ConfigurationScriptBase", :foreign_key => "parent_id"
has_many :children,
:class_name => "ConfigurationScriptBase",
:foreign_key => "parent_id",
:dependent => :nullify

has_many :authentication_configuration_script_bases,
:dependent => :destroy
Expand Down
2 changes: 1 addition & 1 deletion app/models/configuration_script_source.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class ConfigurationScriptSource < ApplicationRecord
has_many :configuration_script_payloads
has_many :configuration_script_payloads, :dependent => :destroy
belongs_to :authentication
belongs_to :manager, :class_name => "ExtManagementSystem"

Expand Down

0 comments on commit ff08d81

Please sign in to comment.