Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nullify dependents when destroying configuration_script_sources/configuration_scripts #14567

Merged
merged 1 commit into from
Apr 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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