mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
23 lines
334 B
Ruby
23 lines
334 B
Ruby
class Vegetable < ActiveRecord::Base
|
|
validates_presence_of :name
|
|
|
|
def self.inheritance_column
|
|
"custom_type"
|
|
end
|
|
end
|
|
|
|
class Cucumber < Vegetable
|
|
end
|
|
|
|
class Cabbage < Vegetable
|
|
end
|
|
|
|
class GreenCabbage < Cabbage
|
|
end
|
|
|
|
class KingCole < GreenCabbage
|
|
end
|
|
|
|
class RedCabbage < Cabbage
|
|
belongs_to :seller, class_name: "Company"
|
|
end
|