Guest User

Untitled

a guest
May 27th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. module Picombo
  2. module Models
  3. class Feed_Post < Picombo::Model
  4. storage_names[:default] = 'feed_posts'
  5.  
  6. property :id, Serial, :key => true
  7. property :content, String
  8.  
  9. belongs_to :user, :model => 'Picombo::Models::User'
  10. end
  11. end
  12. end
Add Comment
Please, Sign In to add comment