Guest User

Untitled

a guest
May 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * @file
  5. * Install, update and uninstall functions for the user module.
  6. */
  7.  
  8. /**
  9. * Implements hook_schema().
  10. */
  11. function eye_schema() {
  12. $schema['eye'] = array(
  13. 'description' => 'Stores distributed authentication mapping.',
  14. 'fields' => array(
  15. 'aid' => array(
  16. 'description' => 'Primary Key: Unique authmap ID.',
  17. 'type' => 'serial',
  18. 'unsigned' => TRUE,
  19. 'not null' => TRUE,
  20. ),
  21. ),
  22. 'primary key' => array('aid'),
  23. );
  24.  
  25. return $schema;
  26. }
Add Comment
Please, Sign In to add comment