| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?php
- /**
- * @package modx
- * @subpackage mysql
- */
- $xpdo_meta_map['modUserGroupSetting']= array (
- 'package' => 'modx',
- 'version' => '1.1',
- 'table' => 'user_group_settings',
- 'extends' => 'xPDOObject',
- 'tableMeta' =>
- array (
- 'engine' => 'InnoDB',
- ),
- 'fields' =>
- array (
- 'group' => 0,
- 'key' => NULL,
- 'value' => NULL,
- 'xtype' => 'textfield',
- 'namespace' => 'core',
- 'area' => '',
- 'editedon' => NULL,
- ),
- 'fieldMeta' =>
- array (
- 'group' =>
- array (
- 'dbtype' => 'integer',
- 'attributes' => 'unsigned',
- 'phptype' => 'integer',
- 'null' => false,
- 'default' => 0,
- 'index' => 'pk',
- ),
- 'key' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '50',
- 'phptype' => 'string',
- 'null' => false,
- 'index' => 'pk',
- ),
- 'value' =>
- array (
- 'dbtype' => 'text',
- 'phptype' => 'string',
- ),
- 'xtype' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '75',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => 'textfield',
- ),
- 'namespace' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '40',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => 'core',
- ),
- 'area' =>
- array (
- 'dbtype' => 'varchar',
- 'precision' => '191',
- 'phptype' => 'string',
- 'null' => false,
- 'default' => '',
- ),
- 'editedon' =>
- array (
- 'dbtype' => 'timestamp',
- 'phptype' => 'timestamp',
- 'null' => true,
- 'default' => NULL,
- 'attributes' => 'ON UPDATE CURRENT_TIMESTAMP',
- ),
- ),
- 'indexes' =>
- array (
- 'PRIMARY' =>
- array (
- 'alias' => 'PRIMARY',
- 'primary' => true,
- 'unique' => true,
- 'type' => 'BTREE',
- 'columns' =>
- array (
- 'group' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- 'key' =>
- array (
- 'length' => '',
- 'collation' => 'A',
- 'null' => false,
- ),
- ),
- ),
- ),
- 'aggregates' =>
- array (
- 'UserGroup' =>
- array (
- 'class' => 'modUserGroup',
- 'local' => 'group',
- 'foreign' => 'id',
- 'cardinality' => 'one',
- 'owner' => 'foreign',
- ),
- 'Namespace' =>
- array (
- 'class' => 'modNamespace',
- 'local' => 'namespace',
- 'foreign' => 'name',
- 'cardinality' => 'one',
- 'owner' => 'foreign',
- ),
- ),
- );
|