| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modTemplateVarTemplate']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'site_tmplvar_templates',
- 'extends' => 'xPDOObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'tmplvarid' => 0,
- 'templateid' => 0,
- 'rank' => 0,
- ),
- 'fieldMeta' =>
- array (
- 'tmplvarid' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '10',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 0,
- 'index' => 'pk',
- ),
- 'templateid' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '11',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 0,
- 'index' => 'pk',
- ),
- 'rank' =>
- array (
- 'dbtype' => 'int',
- 'precision' => '11',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 0,
- ),
- ),
- 'indexes' =>
- array (
- 'PRIMARY' =>
- array (
- 'alias' => 'PRIMARY',
- 'primary' => true,
- 'unique' => true,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'tmplvarid' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- 'templateid' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- 'aggregates' =>
- array (
- 'TemplateVar' =>
- array (
- 'class' => 'modTemplateVar',
- 'key' => 'id',
- 'local' => 'tmplvarid',
- 'foreign' => 'id',
- 'cardinality' => 'one',
- 'owner' => 'foreign',
- ),
- 'Template' =>
- array (
- 'class' => 'modTemplate',
- 'key' => 'id',
- 'local' => 'templateid',
- 'foreign' => 'id',
- 'cardinality' => 'one',
- 'owner' => 'foreign',
- ),
- ),
- );
|