We are trying to get a last login report to see who is actually using Crucible.
We were using this Script;
select distinct cru_user.cru_user_name,cru_crucible_enabled,from_unixtime(cru_recently_visited.cru_last_viewed/1000) as last_view from cru_user JOIN cru_recently_visited on cru_user.cru_user_name = cru_recently_visited.cru_user_name where cru_crucible_enabled=1 and cru_last_viewed = (SELECT MAX(cru_last_viewed) from cru_recently_visited WHERE cru_user.cru_user_name = cru_recently_visited.cru_user_name);
However this worked for Crucible version 3.x...but since we have upgraded we are unable to run this query against mysql.
Instead we get a ERROR 1054 (42S22): Unknown column 'cru_crucible_enabled' in 'field list'
What are we missing.
Hi Aubrey,
In FishEye/Crucible 4.0 the whole user management has been refactored, see crucible-4-0-release-notes.
The cru_user.cru_crucible_enabled and cru_user.cru_fisheye_enabled columns have been removed.
The equivalent is cwd_user.active, which tells if user has not been disabled in the directory. However, please note that this column does not tell about global permissions (i.e. access to FishEye and Crucible functionality), which you can check in the following columns:
cru_global_permission.cru_fisheye_user
cru_global_permission.cru_crucible_user
Cheers
Marek
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.