modaccessiblesimpleobject.map.inc.php 781 B

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