Sha256: 84d18007b3c15c6934d8d0737a72a5cf5b6072fc84ba2f42c7be619898fd6f81
Contents?: true
Size: 499 Bytes
Versions: 3
Compression:
Stored size: 499 Bytes
Contents
module DataMapper module Types module Fixtures class Ticket # # Behaviors # include DataMapper::Resource include DataMapper::Validate # # Properties # property :id, Serial property :title, String, :length => 255 property :body, Text property :status, Enum[:unconfirmed, :confirmed, :assigned, :resolved, :not_applicable] auto_migrate! end # Ticket end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dm-types-0.10.2 | spec/fixtures/ticket.rb |
dm-types-0.10.1 | spec/fixtures/ticket.rb |
dm-types-0.10.0 | spec/fixtures/ticket.rb |