STI (Single Table Inherita...
STI (Single Table Inherita...
STI là kỹ thuật kế thừa trong ActiveRecord, lưu nhiều loại model trong cùng một bảng, phân biệt bởi cột type.
class Animal < ApplicationRecord; end
class Dog < Animal; end
class Cat < Animal; end
**...
senior