Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. jvtvUserBlog:
  2. tableName: jvtv_user_blog
  3. actAs:
  4. Timestampable: ~
  5. columns:
  6. title: { type: string(1024) }
  7. description: { type: string }
  8. start_date: { type: datetime }
  9. jvtv_user_id: { type: integer }
  10. relations:
  11. Author: { class: jvtvUser, onDelete: CASCADE, local: jvtv_user_id, foreign: id }
  12. Account: { class: User, onDelete: CASCADE, local: user_id, foreign: id }
  13.  
  14. jvtvUserBlog:
  15. tableName: jvtv_user_blog
  16. actAs:
  17. Timestampable: ~
  18. columns:
  19. title: { type: string(1024) }
  20. description: { type: string }
  21. start_date: { type: datetime }
  22. jvtv_user_id: { type: integer }
  23. relations:
  24. Author: { class: jvtvUser, onDelete: CASCADE, local: jvtv_user_id, foreign: id }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement