modaccessiblesimpleobject.map.inc.php 900 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * @package modx
  4. * @subpackage mysql
  5. */
  6. $xpdo_meta_map['modAccessibleSimpleObject']= array (
  7. 'package' => 'modx',
  8. 'version' => '1.1',
  9. 'extends' => 'modAccessibleObject',
  10. 'tableMeta' =>
  11. array (
  12. 'engine' => 'InnoDB',
  13. ),
  14. 'fields' =>
  15. array (
  16. 'id' => NULL,
  17. ),
  18. 'fieldMeta' =>
  19. array (
  20. 'id' =>
  21. array (
  22. 'dbtype' => 'int',
  23. 'precision' => '10',
  24. 'attributes' => 'unsigned',
  25. 'phptype' => 'integer',
  26. 'null' => false,
  27. 'index' => 'pk',
  28. 'generated' => 'native',
  29. ),
  30. ),
  31. 'indexes' =>
  32. array (
  33. 'PRIMARY' =>
  34. array (
  35. 'alias' => 'PRIMARY',
  36. 'primary' => true,
  37. 'unique' => true,
  38. 'type' => 'BTREE',
  39. 'columns' =>
  40. array (
  41. 'id' =>
  42. array (
  43. 'length' => '',
  44. 'collation' => 'A',
  45. 'null' => false,
  46. ),
  47. ),
  48. ),
  49. ),
  50. );