Guest User

Untitled

a guest
Jun 1st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. ---
  2. detect_relations: true
  3. options:
  4. type: InnoDB
  5. collate: utf8_unicode_ci
  6. charset: utf8
  7.  
  8. User:
  9. tableName: acl_users
  10. columns:
  11. full_name:
  12. type: string(255)
  13. notnull: true
  14. username:
  15. type: string(255)
  16. notnull: true
  17. password:
  18. type: string(255)
  19. notnull: true
  20. role_id: integer
  21.  
  22. Role:
  23. tableName: acl_roles
  24. columns:
  25. name:
  26. type: string(255)
  27. notnull: true
  28. description:
  29. type: string
  30.  
  31. Resource:
  32. tableName: acl_resources
  33. columns:
  34. name:
  35. type: string(255)
  36. notnull: true
  37. description:
  38. type: string
  39.  
  40. Permission:
  41. tableName: acl_permissions
  42. columns:
  43. role_id: integer
  44. resource_id: integer
  45. `read`:
  46. type: boolean
  47. default: false
  48. `write`:
  49. type: boolean
  50. default: false
  51. modify:
  52. type: boolean
  53. default: false
  54. `delete`:
  55. type: boolean
  56. default: false
  57. publish:
  58. type: boolean
  59. default: false
  60. description:
  61. type: string
Add Comment
Please, Sign In to add comment