ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
284 B

  1. class Post < ApplicationRecord
  2. belongs_to :parent, class_name: 'Post', optional: true, foreign_key: 'parent_id'
  3. belongs_to :user, foreign_key: ''
  4. has_many :post_tags, dependent: :destroy
  5. has_many :tags, through: :post_tags
  6. has_many :user_post_views, dependent: :destroy
  7. end