Sha256: fa4367d64466e05d5e7fc65ffe9a34a4f1a9c643567d3fe0ac3c818ad2fa586d

Contents?: true

Size: 478 Bytes

Versions: 10

Compression:

Stored size: 478 Bytes

Contents

module Ixtlan
  module Models
    class GroupLocaleUser

      include DataMapper::Resource

      def self.default_storage_name
        "GroupLocaleUser"
      end

      property :group_id, Integer, :key => true

      property :user_id, Integer, :key => true

      property :locale_id, Integer, :key => true

      belongs_to :group, :model => Models::GROUP
      belongs_to :user, :model => Models::USER
      belongs_to :locale, :model => Models::LOCALE
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ixtlan-0.4.3 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.2 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.1 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.0 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.0.pre5 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.0.pre4 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.0.pre3 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.0.pre2 lib/ixtlan/models/group_locale_user.rb
ixtlan-0.4.0.pre lib/ixtlan/models/group_locale_user.rb
ixtlan-0.3.0 lib/ixtlan/models/group_locale_user.rb