| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modAccessPolicyTemplateGroup']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'access_policy_template_groups',
- 'extends' => 'xPDOSimpleObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'name' => '',
- 'description' => NULL,
- ),
- 'fieldMeta' =>
- array (
- 'name' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '191',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- 'index' => 'index',
- ),
- 'description' =>
- array (
- 'dbtype' => 'mediumtext',
- 'phptype' => 'string',
- ),
- ),
- 'composites' =>
- array (
- 'Templates' =>
- array (
- 'class' => 'modAccessPolicyTemplate',
- 'local' => 'id',
- 'foreign' => 'template_group',
- 'owner' => 'local',
- 'cardinality' => 'many',
- ),
- ),
- );
|