mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-30 07:56:05 +00:00
25 lines
434 B
PHP
25 lines
434 B
PHP
<?php
|
|
|
|
namespace tests\unit\testData\Entities;
|
|
|
|
use Espo\ORM\Entity;
|
|
use Espo\ORM\BaseEntity;
|
|
|
|
class User extends BaseEntity
|
|
{
|
|
public $fields = array(
|
|
'id' => array(
|
|
'type' => Entity::ID,
|
|
),
|
|
'name' => array(
|
|
'type' => Entity::VARCHAR,
|
|
'len' => 255
|
|
),
|
|
'deleted' => array(
|
|
'type' => Entity::BOOL,
|
|
'default' => 0
|
|
)
|
|
);
|
|
}
|
|
|