s-andrews/sierra

Allow admins to delete sample notes

Closed this issue · 2 comments

The facility would like the ability to delete notes added to samples.

This will require an additional database permission.

GRANT DELETE on sierra.sample_note TO sierrauser@localhost;
FLUSH PRIVILEGES;

or on production:

GRANT DELETE on sierra.sample_note TO sierrauser@bioinform.babraham.ac.uk;
FLUSH PRIVILEGES;

I've rolled this out into production and have checked that it seems to be working.