| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- /**
- * @package modx
- * @subpackage sqlsrv
- */
- $xpdo_meta_map['modUserGroupRole']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'user_group_roles',
- 'extends' => 'xPDOSimpleObject',
- 'fields' =>
- array (
- 'name' => NULL,
- 'description' => NULL,
- 'authority' => 9999,
- ),
- 'fieldMeta' =>
- array (
- 'name' =>
- array (
- 'dbtype' => 'nvarchar',
- 'precision' => '255',
- 'phptype' => 'string',
- 'null' => false,
- 'index' => 'unique',
- ),
- 'description' =>
- array (
- 'dbtype' => 'nvarchar',
- 'precision' => 'max',
- 'phptype' => 'string',
- ),
- 'authority' =>
- array (
- 'dbtype' => 'int',
- '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',
- ),
- ),
- );
|