luckybooru/src/models/post_tag.cr

7 lines
99 B
Crystal

class PostTag < BaseModel
table do
belongs_to post : Post
belongs_to tag : Tag
end
end