mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
3 lines
120 B
Ruby
3 lines
120 B
Ruby
class StockExchange < ApplicationRecord
|
|
scope :in_country, ->(country_code) { where(country_code: country_code) }
|
|
end
|