Guest User

Untitled

a guest
Apr 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class Article
  2. include DataMapper::Resource
  3. include DataMapper::Validate
  4.  
  5. property :id, Fixnum, :serial => true
  6. property :title, String, :length => 200, :nullable => false, :index => :unique
  7.  
  8. property :permalink, String, :length => 400, :nullable => false
  9. validates_presence_of :title
  10. validates_presence_of :permalink
  11.  
  12. end
Add Comment
Please, Sign In to add comment