| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modUserGroupRole']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'user_group_roles',
- 'extends' => 'xPDOSimpleObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'name' => NULL,
- 'description' => NULL,
- 'authority' => 9999,
- ),
- 'fieldMeta' =>
- array (
- 'name' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '191',
- 'phptype' => 'string',
- 'null' => false,
- 'index' => 'unique',
- ),
- 'description' =>
- array (
- 'dbtype' => 'mediumtext',
- 'phptype' => 'string',
- ),
- 'authority' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '10',
- 'attributes' => 'unsigned',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 9999,
- 'index' => 'index',
- ),
- ),
- 'indexes' =>
- array (
- 'name' =>
- array (
- 'alias' => 'name',
- 'primary' => false,
- 'unique' => true,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'name' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- 'authority' =>
- array (
- 'alias' => 'authority',
- 'primary' => false,
- 'unique' => false,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'authority' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- 'aggregates' =>
- array (
- 'UserGroupMembers' =>
- array (
- 'class' => 'modUserGroupMember',
- 'local' => 'id',
- 'foreign' => 'role',
- 'cardinality' => 'many',
- 'owner' => 'local',
- ),
- ),
- );
|