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.
83 lines
1.9 KiB
83 lines
1.9 KiB
<?php
|
|
|
|
return [
|
|
|
|
'inverse' => [
|
|
10 => ['name' => 'Businesses'],
|
|
20 => ['name' => 'Projects'],
|
|
30 => ['name' => 'Sprints'],
|
|
40 => ['name' => 'Statuses'],
|
|
50 => ['name' => 'Systems'],
|
|
60 => ['name' => 'Workflows'],
|
|
70 => ['name' => 'Tags'],
|
|
80 => ['name' => 'Tasks'],
|
|
90 => ['name' => 'Works'],
|
|
210 => ['name' => 'BusinessUser'],
|
|
220 => ['name' => 'ProjectUser'],
|
|
230 => ['name' => 'TagTask'],
|
|
],
|
|
|
|
//Main Table's
|
|
'businesses' => [
|
|
'id' => 10,
|
|
'name' => 'Businesses',
|
|
'singular_name' => 'Business',
|
|
],
|
|
'projects' => [
|
|
'id' => 20,
|
|
'name' => 'Projects',
|
|
'singular_name' => 'Project',
|
|
],
|
|
'sprints' => [
|
|
'id' => 30,
|
|
'name' => 'Sprints',
|
|
'singular_name' => 'Sprint',
|
|
],
|
|
'statuses' => [
|
|
'id' => 40,
|
|
'name' => 'Statuses',
|
|
'singular_name' => 'Status',
|
|
],
|
|
'systems' => [
|
|
'id' => 50,
|
|
'name' => 'Systems',
|
|
'singular_name' => 'System',
|
|
],
|
|
'workflows' => [
|
|
'id' => 60,
|
|
'name' => 'Workflows',
|
|
'singular_name' => 'Workflow',
|
|
],
|
|
'tags' => [
|
|
'id' => 70,
|
|
'name' => 'Tags',
|
|
'singular_name' => 'Tag',
|
|
],
|
|
'tasks' => [
|
|
'id' => 80,
|
|
'name' => 'Tasks',
|
|
'singular_name' => 'Task',
|
|
],
|
|
'works' => [
|
|
'id' => 90,
|
|
'name' => 'Works',
|
|
'singular_name' => 'Work',
|
|
],
|
|
|
|
//Relation Table's
|
|
'business_user' => [
|
|
'id' => 210,
|
|
'name' => 'BusinessUser',
|
|
'singular_name' => 'BusinessUser',
|
|
],
|
|
'project_user' => [
|
|
'id' => 220,
|
|
'name' => 'ProjectUser',
|
|
'singular_name' => 'ProjectUser',
|
|
],
|
|
'tag_task' => [
|
|
'id' => 230,
|
|
'name' => 'TagTask',
|
|
'singular_name' => 'TagTask',
|
|
],
|
|
];
|