"A map of rid's to FAS group names.", 'fields' => array( 'rid' => array( 'description' => 'Identifier for a role.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, ), 'fasgroup' => array( 'description' => 'The name of a FAS group.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), ), 'unique keys' => array('rid_fasgroup' => array('rid', 'fasgroup')), 'primary key' => array('rid'), ); return $schema; } function authfas_install() { drupal_install_schema('authfas'); } function authfas_uninstall() { drupal_uninstall_schema('authfas'); } // Local variables: // mode:php // End: