aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/ship_part.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/models/ship_part.rb')
-rw-r--r--activerecord/test/models/ship_part.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/test/models/ship_part.rb b/activerecord/test/models/ship_part.rb
new file mode 100644
index 0000000000..f6d7a8ae5e
--- /dev/null
+++ b/activerecord/test/models/ship_part.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+class ShipPart < ActiveRecord::Base
+ belongs_to :ship
+ has_many :trinkets, class_name: "Treasure", as: :looter
+ accepts_nested_attributes_for :trinkets, allow_destroy: true
+ accepts_nested_attributes_for :ship
+
+ validates_presence_of :name
+end