| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modAccessPermission']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'access_permissions',
- 'extends' => 'xPDOSimpleObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'template' => 0,
- 'name' => '',
- 'description' => '',
- 'value' => 1,
- ),
- 'fieldMeta' =>
- array (
- 'template' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '10',
- 'phptype' => 'integer',
- 'attributes' => 'unsigned',
- 'null' => false,
- 'default' => 0,
- 'index' => 'index',
- ),
- 'name' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '191',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- 'index' => 'index',
- ),
- 'description' =>
- array (
- 'dbtype' => 'text',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- ),
- 'value' =>
- array (
- 'dbtype' => 'tinyint',
- 'precision' => '1',
- 'phptype' => 'boolean',
- 'attributes' => 'unsigned',
- 'null' => false,
- 'default' => 1,
- ),
- ),
- 'indexes' =>
- array (
- 'template' =>
- array (
- 'alias' => 'template',
- 'primary' => false,
- 'unique' => false,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'template' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- 'name' =>
- array (
- 'alias' => 'name',
- 'primary' => false,
- 'unique' => false,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'name' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- 'aggregates' =>
- array (
- 'Template' =>
- array (
- 'class' => 'modAccessPolicyTemplate',
- 'local' => 'template',
- 'foreign' => 'id',
- 'cardinality' => 'one',
- 'owner' => 'foreign',
- ),
- ),
- );
|