Skip to content

Commit

Permalink
Merge pull request ManageIQ#14567 from jameswnl/nullify-dependents
Browse files Browse the repository at this point in the history
Nullify dependents when destroying configuration_script_sources/configuration_scripts
  • Loading branch information
bdunne authored Apr 3, 2017
2 parents 5f36311 + ff08d81 commit 2875c6c
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 2875c6c

Please sign in to comment.