Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/model/modx/mysql/ |
<?php /** * @package modx * @subpackage mysql */ $xpdo_meta_map['modWorkspace']= array ( 'package' => 'modx', 'version' => '1.1', 'table' => 'workspaces', 'extends' => 'xPDOSimpleObject', 'fields' => array ( 'name' => '', 'path' => '', 'created' => NULL, 'active' => 0, 'attributes' => NULL, ), 'fieldMeta' => array ( 'name' => array ( 'dbtype' => 'varchar', 'precision' => '255', 'phptype' => 'string', 'null' => false, 'default' => '', 'index' => 'index', ), 'path' => array ( 'dbtype' => 'varchar', 'precision' => '255', 'phptype' => 'string', 'null' => false, 'default' => '', 'index' => 'unique', ), 'created' => array ( 'dbtype' => 'datetime', 'phptype' => 'timestamp', 'null' => false, ), 'active' => array ( 'dbtype' => 'tinyint', 'precision' => '1', 'attributes' => 'unsigned', 'phptype' => 'boolean', 'null' => false, 'default' => 0, 'index' => 'index', ), 'attributes' => array ( 'dbtype' => 'mediumtext', 'phptype' => 'array', ), ), 'indexes' => array ( 'name' => array ( 'alias' => 'name', 'primary' => false, 'unique' => false, 'type' => 'BTREE', 'columns' => array ( 'name' => array ( 'length' => '', 'collation' => 'A', 'null' => false, ), ), ), 'path' => array ( 'alias' => 'path', 'primary' => false, 'unique' => true, 'type' => 'BTREE', 'columns' => array ( 'path' => array ( 'length' => '', 'collation' => 'A', 'null' => false, ), ), ), 'active' => array ( 'alias' => 'active', 'primary' => false, 'unique' => false, 'type' => 'BTREE', 'columns' => array ( 'active' => array ( 'length' => '', 'collation' => 'A', 'null' => false, ), ), ), ), 'composites' => array ( 'Packages' => array ( 'class' => 'transport.modTransportPackage', 'local' => 'id', 'foreign' => 'workspace', 'cardinality' => 'many', 'owner' => 'local', ), ), );