vote up 0 vote down star

In Datamapper, how would one specify the the combination of two fields must be unique. For example categories must have unique names within a domain:

class Category
  include DataMapper.resource
  property :name, String, :index=>true #must be unique for a given domain

  belongs_to :domain
end
flag

69% accept rate
Somewhere I saw mentioned that named keys will group like this. ie :unique_index=>:name for both name and domain. – John F. Miller Sep 3 at 18:52

1 Answer

vote up 0 vote down check

Did you try to define both properties as keys? Not sure I have tried it but that way they should become a composite key.

property :name, String, :key => true    
property :category, Integer, :key => true
link|flag
Actually there already is a key, I just didn't include it in the code snippet. – John F. Miller Sep 3 at 18:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.