You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bulletin 모델을 작성해서 각종 게시판을 관리한다. Post 모델에는 belongs_to :bulletin 라고 관계선언을 추가하고, bulletin_id 라는 외래키가 정의되어 있어야 한다. Bulletin 모델에는 has_many :post, dependent: :destroy 관계선언이 필요하고, 특정 게시판을 삭제할 때 이에 속하는 게시물(posts)들도 삭제하는 옵션인 dependent: :destroy 를 추가했다. 이 때 dependent: :nullify 라고 옵션을 지정하면, 해당 게시판을 삭제시에 그에 속한 게시물들은 삭제되지 않고 외래키인 bulletin_id 값이 null 값으로 변경되기만 한다.
The text was updated successfully, but these errors were encountered:
Bulletin 모델을 작성해서 각종 게시판을 관리한다. Post 모델에는 belongs_to :bulletin 라고 관계선언을 추가하고, bulletin_id 라는 외래키가 정의되어 있어야 한다. Bulletin 모델에는 has_many :post, dependent: :destroy 관계선언이 필요하고, 특정 게시판을 삭제할 때 이에 속하는 게시물(posts)들도 삭제하는 옵션인 dependent: :destroy 를 추가했다. 이 때 dependent: :nullify 라고 옵션을 지정하면, 해당 게시판을 삭제시에 그에 속한 게시물들은 삭제되지 않고 외래키인 bulletin_id 값이 null 값으로 변경되기만 한다.
The text was updated successfully, but these errors were encountered: