Sha256: bc0cf9f07b7b940b284ef2dcdcd20aac2b21a6830924e8095a13e2718b47daef

Contents?: true

Size: 258 Bytes

Versions: 7

Compression:

Stored size: 258 Bytes

Contents

class Product
  include DataMapper::Resource
  
  property :id, Serial
  property :product_id, String
  property :name, String
  property :description, Text
  property :created_at, DateTime, default: DateTime.now
  property :updated_at, DateTime
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
symbiont-0.1.7 app/models/product.rb
symbiont-0.1.6 app/models/product.rb
symbiont-0.1.5 app/models/product.rb
symbiont-0.1.4 app/models/product.rb
symbiont-0.1.3 app/models/product.rb
symbiont-0.1.2 app/models/product.rb
symbiont-0.1.1 app/models/product.rb