curation/app/models/curation_cache.rb

8 lines
177 B
Ruby
Raw Normal View History

2025-05-07 14:25:46 +00:00
class CurationCache
include Mongoid::Document
field :parent_id
2020-05-06 10:26:03 +00:00
field :filter_result
2020-03-05 10:36:28 +00:00
field :locale,type: String,default: 'zh_tw'
2021-08-05 10:19:42 +00:00
field :invalid_date, type: DateTime
2025-05-07 14:25:46 +00:00
end