Files
adamantium/app/relations/highlights.rb
2024-04-05 21:35:39 +11:00

16 lines
268 B
Ruby

# frozen_string_literal: true
module Adamantium
module Relations
class Highlights < ROM::Relation[:sql]
schema :highlights, infer: true do
associations do
belongs_to :post
end
end
auto_struct(true)
end
end
end