0
다형성 연관에 데이터가 저장되는 방식을 설명 할 수 있습니까?다형 연관 데이터 저장소
예를 들어 댓글, 사례, 사례 단계 표가있는 경우 링크 형태의 레일을 통해
belongs_to :case, class_name: 'Case', foreign_key: 'case_id'
has_many :comments, as: :commentable, dependent: :destroy
Goen 캐스트 및 기타 여러 링크 :
has_many :comments, as: :commentable, dependent: :destroy
케이스는 테이블처럼 단계 :
belongs_to :user, class_name: 'User', foreign_key: 'user_id'
belongs_to :commentable, polymorphic: true, counter_cache: true
케이스 테이블이 링크입니다 : 댓글 테이블 링크입니다. .. 그러나 명확한 이해를 얻지 못합니다.