| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * @package modx
- * @subpackage sqlsrv
- */
- $xpdo_meta_map['modAccessResource']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'access_resources',
- 'extends' => 'modAccess',
- 'fields' =>
- array (
- 'context_key' => '',
- ),
- 'fieldMeta' =>
- array (
- 'context_key' =>
- array (
- 'dbtype' => 'nvarchar',
- 'precision' => '100',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- 'index' => 'fk',
- ),
- ),
- 'indexes' =>
- array (
- 'context_key' =>
- array (
- 'alias' => 'context_key',
- 'primary' => false,
- 'unique' => false,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'context_key' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- 'aggregates' =>
- array (
- 'Target' =>
- array (
- 'class' => 'modResource',
- 'local' => 'target',
- 'foreign' => 'id',
- 'owner' => 'foreign',
- 'cardinality' => 'one',
- ),
- 'Context' =>
- array (
- 'class' => 'modContext',
- 'local' => 'context_key',
- 'foreign' => 'key',
- 'cardinality' => 'one',
- 'owner' => 'foreign',
- ),
- ),
- );
|