| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modManagerLog']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'manager_log',
- 'extends' => 'xPDOSimpleObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'user' => 0,
- 'occurred' => NULL,
- 'action' => '',
- 'classKey' => '',
- 'item' => '0',
- ),
- 'fieldMeta' =>
- array (
- 'user' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '10',
- 'attributes' => 'unsigned',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 0,
- ),
- 'occurred' =>
- array (
- 'dbtype' => 'datetime',
- 'phptype' => 'datetime',
- 'null' => true,
- 'default' => NULL,
- ),
- 'action' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '100',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- ),
- 'classKey' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '100',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- ),
- 'item' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '191',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '0',
- ),
- ),
- 'indexes' =>
- array (
- 'user_occurred' =>
- array (
- 'alias' => 'user_occurred',
- 'primary' => false,
- 'unique' => false,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'user' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- 'occurred' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- 'aggregates' =>
- array (
- 'User' =>
- array (
- 'class' => 'modUser',
- 'local' => 'user',
- 'foreign' => 'id',
- 'owner' => 'foreign',
- 'cardinality' => 'one',
- ),
- ),
- );
|