74cbca706b
- All models: SimplyStored::Couch → SimplyCouch::Model - Gemfile: simply_stored → simply_couch - devise_simply_stored → devise_simply_couch - Remove stale couch_potato require (not used)
11 lines
226 B
Ruby
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
|