Files
adamantium/app/relations/podcasts.rb

12 lines
193 B
Ruby

# frozen_string_literal: true
module Adamantium
module Relations
class Podcasts < Adamantium::DB::Relation
schema :podcasts, infer: true
auto_struct(true)
end
end
end