| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modAccessibleSimpleObject']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'extends' => 'modAccessibleObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'id' => NULL,
- ),
- 'fieldMeta' =>
- array (
- 'id' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '10',
- 'attributes' => 'unsigned',
- 'phptype' => 'integer',
- 'null' => false,
- 'index' => 'pk',
- 'generated' => 'native',
- ),
- ),
- 'indexes' =>
- array (
- 'PRIMARY' =>
- array (
- 'alias' => 'PRIMARY',
- 'primary' => true,
- 'unique' => true,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'id' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- );
|