This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/data/cache/doctrine/metadata/Espo.Entities.User.php
T
Taras Machyshyn 417576fd5e change instance
2013-11-01 13:49:54 +02:00

41 lines
637 B
PHP

<?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,
),
),
),
),
);
?>