Guest User

Untitled

a guest
Jun 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. GnArticle:
  2. actAs:
  3. Timestampable: ~
  4. I18n:
  5. fields: [title,content]
  6. actAs:
  7. Sluggable: { fields: [title], uniqueBy: [lang, title] }
  8. columns:
  9. id:
  10. type: integer(4)
  11. primary: true
  12. autoincrement: true
  13. category_id:
  14. type: integer(4)
  15. notnull: true
  16. author_id:
  17. type: integer(4)
  18. notnull: true
  19. title:
  20. type: string(255)
  21. notnull: true
  22. content: string(10000)
  23. publish_date: timestamp
  24. unpublish_date: timestamp
  25. is_published:
  26. type: boolean
  27. default: 0
  28. relations:
  29. gnCategory:
  30. local: category_id
  31. foreign: id
  32. Author:
  33. class: GnTeamUser
  34. local: author_id
  35. foreign: id
Add Comment
Please, Sign In to add comment