Files
redux-scraper/app/models/flat_sst_entry.rb
2025-01-01 03:29:53 +00:00

11 lines
211 B
Ruby

# typed: true
class FlatSstEntry < ReduxApplicationRecord
self.primary_key = :key
# key - bytea
# contents - bytea
def self.find_by_hex_key(hex_key)
find_by(key: HexUtil.hex2bin(hex_key))
end
end