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.
56 lines
975 B
56 lines
975 B
<?php
|
|
|
|
return [
|
|
|
|
//Main Table's
|
|
'businesses' => [
|
|
'id' => 10,
|
|
'name' => 'Businesses'
|
|
],
|
|
'projects' => [
|
|
'id' => 20,
|
|
'name' => 'Projects'
|
|
],
|
|
'sprints' => [
|
|
'id' => 30,
|
|
'name' => 'Sprints'
|
|
],
|
|
'statuses' => [
|
|
'id' => 40,
|
|
'name' => 'Statuses'
|
|
],
|
|
'systems' => [
|
|
'id' => 50,
|
|
'name' => 'Systems'
|
|
],
|
|
'workflows' => [
|
|
'id' => 60,
|
|
'name' => 'Workflows'
|
|
],
|
|
'tags' => [
|
|
'id' => 70,
|
|
'name' => 'Tags'
|
|
],
|
|
'tasks' => [
|
|
'id' => 80,
|
|
'name' => 'Tasks'
|
|
],
|
|
'works' => [
|
|
'id' => 90,
|
|
'name' => 'Works'
|
|
],
|
|
|
|
//Relation Table's
|
|
'business_user' => [
|
|
'id' => 210,
|
|
'name' => 'BusinessUser'
|
|
],
|
|
'project_user' => [
|
|
'id' => 220,
|
|
'name' => 'ProjectUser'
|
|
],
|
|
'tag_task' => [
|
|
'id' => 230,
|
|
'name' => 'TagTask'
|
|
],
|
|
];
|