1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/models/doubloon.rb

15 lines
345 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AbstractDoubloon < ActiveRecord::Base
# This has functionality that might be shared by multiple classes.
self.abstract_class = true
belongs_to :pirate
end
class Doubloon < AbstractDoubloon
# This uses an abstract class that defines attributes and associations.
self.table_name = "doubloons"
end