You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.0 KiB

  1. <?php
  2. return [
  3. 'inverse' => [
  4. 10 => ['name' => 'Businesses'],
  5. 20 => ['name' => 'Projects'],
  6. 30 => ['name' => 'Sprints'],
  7. 40 => ['name' => 'Statuses'],
  8. 50 => ['name' => 'Systems'],
  9. 60 => ['name' => 'Workflows'],
  10. 70 => ['name' => 'Tags'],
  11. 80 => ['name' => 'Tasks'],
  12. 90 => ['name' => 'Works'],
  13. 210 => ['name' => 'BusinessUser'],
  14. 220 => ['name' => 'ProjectUser'],
  15. 230 => ['name' => 'TagTask'],
  16. ],
  17. //Main Table's
  18. 'businesses' => [
  19. 'id' => 10,
  20. 'name' => 'Businesses',
  21. 'singular_name' => 'Business',
  22. ],
  23. 'projects' => [
  24. 'id' => 20,
  25. 'name' => 'Projects',
  26. 'singular_name' => 'Project',
  27. ],
  28. 'sprints' => [
  29. 'id' => 30,
  30. 'name' => 'Sprints',
  31. 'singular_name' => 'Sprint',
  32. ],
  33. 'statuses' => [
  34. 'id' => 40,
  35. 'name' => 'Statuses',
  36. 'singular_name' => 'Status',
  37. ],
  38. 'systems' => [
  39. 'id' => 50,
  40. 'name' => 'Systems',
  41. 'singular_name' => 'System',
  42. ],
  43. 'workflows' => [
  44. 'id' => 60,
  45. 'name' => 'Workflows',
  46. 'singular_name' => 'Workflow',
  47. ],
  48. 'tags' => [
  49. 'id' => 70,
  50. 'name' => 'Tags',
  51. 'singular_name' => 'Tag',
  52. ],
  53. 'tasks' => [
  54. 'id' => 80,
  55. 'name' => 'Tasks',
  56. 'singular_name' => 'Task',
  57. ],
  58. 'works' => [
  59. 'id' => 90,
  60. 'name' => 'Works',
  61. 'singular_name' => 'Work',
  62. ],
  63. 'users' => [
  64. 'id' => 100,
  65. 'name' => 'Users',
  66. 'singular_name' => 'Users',
  67. ],
  68. //Relation Table's
  69. 'business_user' => [
  70. 'id' => 210,
  71. 'name' => 'BusinessUser',
  72. 'singular_name' => 'BusinessUser',
  73. ],
  74. 'project_user' => [
  75. 'id' => 220,
  76. 'name' => 'ProjectUser',
  77. 'singular_name' => 'ProjectUser',
  78. ],
  79. 'tag_task' => [
  80. 'id' => 230,
  81. 'name' => 'TagTask',
  82. 'singular_name' => 'TagTask',
  83. ],
  84. ];