mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
34 lines
520 B
PHP
34 lines
520 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'Subscription' => array(
|
|
'fields' => array(
|
|
'id' => array(
|
|
'type' => 'id',
|
|
'dbType' => 'int',
|
|
'len' => '11',
|
|
'autoincrement' => true,
|
|
'unique' => true,
|
|
),
|
|
'entityId' => array(
|
|
'type' => 'varchar',
|
|
'len' => '24',
|
|
'index' => 'entity',
|
|
),
|
|
'entityType' => array(
|
|
'type' => 'varchar',
|
|
'len' => '100',
|
|
'index' => 'entity',
|
|
),
|
|
'userId' => array(
|
|
'type' => 'varchar',
|
|
'len' => '24',
|
|
'index' => true,
|
|
),
|
|
),
|
|
),
|
|
|
|
);
|
|
|