Column | Type | Options |
---|---|---|
name | string | add_index, null:false |
string | null:false | |
password | string | null:false |
avatar_image | string |
- has_many :articles
- has_many :comments
- has_many :likes
Column | Type | Options |
---|---|---|
url | string | add_index, null:false |
user | references | index: true, foreign_key: true |
comment_counts | integer |
- belongs_to :user
- has_many :comments, dependent: :destoy
Column | Type | Options |
---|---|---|
content | text | add_index, null: false |
user | references | index: true, foreign_key: true |
article | references | index: true, foreign_key: true |
like_counts | integer |
- bolongs_to :user
- belongs_to :article, counter_cache: :comment_counts
- has_many :likes, dependent: :destroy
Column | Type | Options |
---|---|---|
user | references | index: true, foreign_key: true |
comment | references | index: true, foreign_key: true |
- belongs_to user
- belongs_to comment, counter_cache: :like_counts