| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modElementPropertySet']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'element_property_sets',
- 'extends' => 'xPDOObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'element' => 0,
- 'element_class' => '',
- 'property_set' => 0,
- ),
- 'fieldMeta' =>
- array (
- 'element' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '10',
- 'attributes' => 'unsigned',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 0,
- 'index' => 'pk',
- ),
- 'element_class' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '100',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- 'index' => 'pk',
- ),
- 'property_set' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '10',
- 'attributes' => 'unsigned',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 0,
- 'index' => 'pk',
- ),
- ),
- 'indexes' =>
- array (
- 'PRIMARY' =>
- array (
- 'alias' => 'PRIMARY',
- 'primary' => true,
- 'unique' => true,
- 'columns' =>
- array (
- 'element' =>
- array (
- 'collation' => 'A',
- 'null' => false,
- ),
- 'element_class' =>
- array (
- 'collation' => 'A',
- 'null' => false,
- ),
- 'property_set' =>
- array (
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- 'aggregates' =>
- array (
- 'Element' =>
- array (
- 'class' => 'modElement',
- 'local' => 'element',
- 'foreign' => 'id',
- 'owner' => 'foreign',
- 'cardinality' => 'one',
- ),
- 'PropertySet' =>
- array (
- 'class' => 'modPropertySet',
- 'local' => 'property_set',
- 'foreign' => 'id',
- 'owner' => 'foreign',
- 'cardinality' => 'one',
- ),
- ),
- );
|