modformcustomizationprofileusergroup.map.inc.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. /**
  3. * @package modx
  4. * @subpackage mysql
  5. */
  6. $xpdo_meta_map['modFormCustomizationProfileUserGroup']= array (
  7. 'package' => 'modx',
  8. 'version' => '1.1',
  9. 'table' => 'fc_profiles_usergroups',
  10. 'extends' => 'xPDOObject',
  11. 'tableMeta' =>
  12. array (
  13. 'engine' => 'InnoDB',
  14. ),
  15. 'fields' =>
  16. array (
  17. 'usergroup' => 0,
  18. 'profile' => 0,
  19. ),
  20. 'fieldMeta' =>
  21. array (
  22. 'usergroup' =>
  23. array (
  24. 'dbtype' => 'int',
  25. 'precision' => '11',
  26. 'phptype' => 'integer',
  27. 'null' => false,
  28. 'default' => 0,
  29. 'index' => 'pk',
  30. ),
  31. 'profile' =>
  32. array (
  33. 'dbtype' => 'int',
  34. 'precision' => '11',
  35. 'phptype' => 'integer',
  36. 'null' => false,
  37. 'default' => 0,
  38. 'index' => 'pk',
  39. ),
  40. ),
  41. 'indexes' =>
  42. array (
  43. 'PRIMARY' =>
  44. array (
  45. 'alias' => 'PRIMARY',
  46. 'primary' => true,
  47. 'unique' => true,
  48. 'type' => 'BTREE',
  49. 'columns' =>
  50. array (
  51. 'usergroup' =>
  52. array (
  53. 'length' => '',
  54. 'collation' => 'A',
  55. 'null' => false,
  56. ),
  57. 'profile' =>
  58. array (
  59. 'length' => '',
  60. 'collation' => 'A',
  61. 'null' => false,
  62. ),
  63. ),
  64. ),
  65. ),
  66. 'aggregates' =>
  67. array (
  68. 'UserGroup' =>
  69. array (
  70. 'class' => 'modUserGroup',
  71. 'local' => 'usergroup',
  72. 'foreign' => 'id',
  73. 'cardinality' => 'one',
  74. 'owner' => 'foreign',
  75. ),
  76. 'Profile' =>
  77. array (
  78. 'class' => 'modFormCustomizationProfile',
  79. 'local' => 'profile',
  80. 'foreign' => 'id',
  81. 'cardinality' => 'one',
  82. 'owner' => 'foreign',
  83. ),
  84. ),
  85. );