Files
by/app/relations/cards.rb
2026-03-03 21:42:51 +05:00

11 lines
178 B
Ruby

module ClashDeckGenerator
module Relations
class Cards < DB::Relation
schema :cards, infer: true
def meta
where(is_meta: 1)
end
end
end
end