Sha256: fe55322f24aef14a4e07fa463b58a28f9e6dd57fd5679a94acdbeb75e6abfc5e

Contents?: true

Size: 383 Bytes

Versions: 12

Compression:

Stored size: 383 Bytes

Contents

# == Schema Information
#
# Table name: alchemy_folded_pages
#
#  id      :integer          not null, primary key
#  page_id :integer
#  user_id :integer
#  folded  :boolean          default(FALSE)
#

module Alchemy
  class FoldedPage < ActiveRecord::Base
    belongs_to :page, required: true
    belongs_to :user, required: true,
      class_name: Alchemy.user_class_name
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alchemy_cms-3.6.7 app/models/alchemy/folded_page.rb
alchemy_cms-3.6.6 app/models/alchemy/folded_page.rb
alchemy_cms-3.6.5 app/models/alchemy/folded_page.rb
alchemy_cms-3.6.4 app/models/alchemy/folded_page.rb
alchemy_cms-3.6.3 app/models/alchemy/folded_page.rb
alchemy_cms-3.6.2 app/models/alchemy/folded_page.rb
alchemy_cms-3.6.1 app/models/alchemy/folded_page.rb
alchemy_cms-4.0.0.beta app/models/alchemy/folded_page.rb
alchemy_cms-3.6.0 app/models/alchemy/folded_page.rb
alchemy_cms-3.5.0 app/models/alchemy/folded_page.rb
alchemy_cms-3.5.0.rc2 app/models/alchemy/folded_page.rb
alchemy_cms-3.5.0.rc1 app/models/alchemy/folded_page.rb