Skip to content

Instantly share code, notes, and snippets.

@oferreiro
Last active December 27, 2015 13:48
Show Gist options
  • Save oferreiro/7335481 to your computer and use it in GitHub Desktop.
Save oferreiro/7335481 to your computer and use it in GitHub Desktop.
class Certificate
include DataMapper::Resource
property :cn, String, key: true, length: 64, unique: true, required: true
property :crt, Text
property :pkey, Text
end
#Preciso deste novo.
class Certificate
include DataMapper::Resource
property :id, Serial
property :cn, String, length: 64, unique: true, required: true
property :crt, Text
property :pkey, Text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment