Sha256: a1edd33c8057d5e9210ec34b57e432005b2e3ff5af31ebafcbff42aaa6d21e65

Contents?: true

Size: 482 Bytes

Versions: 1

Compression:

Stored size: 482 Bytes

Contents

require 'digest/sha1'
require "uri"

require "not_relational/domain_model.rb"

class BlurbWording < NotRelational::DomainModel
  property :blurb_name,:string,:is_primary_key=>true
  property :blurb_namespace,:string,:is_primary_key=>true
  property :language_id , :string  ,:is_primary_key=>true
  property :text,:clob
  property :title , :string  
  property :version , :string  
  property :author , :string  
  property :time_utc , :date
  
  belongs_to :Blurb,:blurb_name
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cloudwow-not_relational-0.1.0 test/models/blurb_wording.rb