fixed untracked files

This commit is contained in:
Yuri Kuznetsov
2013-11-06 15:47:56 +02:00
parent d36acec28b
commit 62b22c5504
6 changed files with 0 additions and 4405 deletions
File diff suppressed because it is too large Load Diff
-51
View File
@@ -1,51 +0,0 @@
<?php
return array (
'Espo\\Entities\\Bug' =>
array (
'type' => 'entity',
'manyToOne' =>
array (
'reporter' =>
array (
'inversedBy' => 'reportedBugs',
'targetEntity' => 'Espo\\Entities\\User',
),
'engineer' =>
array (
'inversedBy' => 'assignedBugs',
'targetEntity' => 'Espo\\Entities\\User',
),
),
'fields' =>
array (
'status' =>
array (
'type' => 'string',
),
'description' =>
array (
'type' => 'text',
),
'created' =>
array (
'type' => 'datetime',
),
),
'repositoryClass' => 'BugRepository',
'table' => 'bugs',
'id' =>
array (
'id' =>
array (
'type' => 'string',
'generator' =>
array (
'strategy' => 'UUID',
),
),
),
),
);
?>
-41
View File
@@ -1,41 +0,0 @@
<?php
return array (
'Espo\\Entities\\User' =>
array (
'table' => 'users',
'type' => 'entity',
'id' =>
array (
'id' =>
array (
'type' => 'string',
'generator' =>
array (
'strategy' => 'UUID',
),
),
),
'fields' =>
array (
'username' =>
array (
'type' => 'string(30)',
),
'password' =>
array (
'type' => 'string(255)',
),
'isAdmin' =>
array (
'type' => 'boolean',
'options' =>
array (
'default' => 0,
),
),
),
),
);
?>
@@ -1,15 +0,0 @@
<?php
return array (
'Modules\\Crm\\Entities\\Contact' =>
array (
'module' => 'Test',
'var1' =>
array (
'subvar1' => 'NEWsubval1',
'subvar55' => 'subval55',
),
),
);
?>
@@ -1,29 +0,0 @@
<?php
return array (
'Modules\\Crm\\Entities\\Product' =>
array (
'table' => 'products',
'type' => 'entity',
'id' =>
array (
'id' =>
array (
'type' => 'string',
'generator' =>
array (
'strategy' => 'UUID',
),
),
),
'fields' =>
array (
'name' =>
array (
'type' => 'string',
),
),
),
);
?>