Files
BenClaw 74cbca706b Switch from simply_stored to simply_couch
- All models: SimplyStored::Couch → SimplyCouch::Model
- Gemfile: simply_stored → simply_couch
- devise_simply_stored → devise_simply_couch
- Remove stale couch_potato require (not used)
2026-06-07 18:24:21 +02:00

11 lines
226 B
Ruby

module Cmtool
class Keyword
include SimplyCouch::Model
property :name
has_and_belongs_to_many :pages, storing_keys: false, class_name: 'Page'
has_and_belongs_to_many :news, :storing_keys => false
end
end