1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * @file
- * Install, update and uninstall functions for the user_reference module.
- */
- /**
- * Implements hook_field_schema();
- */
- function user_reference_field_schema($field) {
- $columns = array(
- 'uid' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => FALSE,
- ),
- );
- return array(
- 'columns' => $columns,
- 'indexes' => array('uid' => array('uid')),
- 'foreign keys' => array(
- 'uid' => array(
- 'table' => 'users',
- 'columns' => array('uid' => 'uid'),
- ),
- ),
- );
- }
|