howdy.
we need to delete a user (or at least remove admin privileges from them) who is no longer with plos.
i don't *thnk* there's any way to do this through admin or old admin pages.
can you let us know how to:
- delete a user account from mulgara (i can do the cas/psql side easily enough)
- remove admin privs from a user in mulgara
- change a username in mulgara
i'm guessing there's a fairly simple itql way to do this...
when we had to update email addresses for the 0.6 upgrade, we used a script like so:
set autocommit off;
delete <info:doi/10.1371/profile/616> <http://xmlns.com/foaf/0.1/mbox> <mailto:hughespllc@webbox.com> from <local:///topazproject#profiles>;
insert <info:doi/10.1371/profile/616> <http://xmlns.com/foaf/0.1/mbox> <mailto:clhughes@rti.org> into <local:///topazproject#profiles>;
set autocommit on;
can we use something like this? is there any documentation for the structure of the mulgara database yet?