--- masquerade.install.orig Sat Sep 26 15:10:02 2009 +++ masquerade.install Sat Sep 26 15:08:56 2009 @@ -15,18 +15,22 @@ function masquerade_schema() { return array( 'masquerade' => array( + 'description' => t('Session correspondance for masquerading users'), 'fields' => array( 'sid' => array( + 'description' => t('The session id'), 'type' => 'varchar', 'length' => '64', 'not null' => TRUE, 'default' => ''), 'uid_from' => array( + 'description' => t('Original user id'), 'type' => 'int', 'not null' => TRUE, 'default' => 0, 'disp-width' => '10'), 'uid_as' => array( + 'description' => t('Uid this session is masquerading as'), 'type' => 'int', 'not null' => TRUE, 'default' => 0, @@ -38,14 +42,17 @@ function masquerade_schema() { ) ), 'masquerade_users' => array( + 'description' => t('Fine-grained permission table for masquerading'), 'fields' => array( 'uid_from' => array( + 'description' => t('This user id can masquerade as...'), 'type' => 'int', 'not null' => true, 'default' => 0, 'disp-width' => 10, ), 'uid_to' => array( + 'description' => t('... this user id'), 'type' => 'int', 'not null' => true, 'default' => 0,