ST Database Table owner

phpMyAdmin can provide a detailed look at the current table definition (if you have the needed permissions).

A row in this table gives the real name of a request owner to display on the list on the welcome page, and indicates whether the owner is a "role" or an actual person. See the ownerOrganization table as well.

Field Notes
ownerId the person's userid (first 8 characters)
name the person's name to appear in the menu.
isRole 1 => is a "role", 0 => is a "person".

E.g. to add "King Kong" to the menu, one could:

st-sql 'insert into owner set ownerId="kkong", name="King Kong", isRole=0'

To remove, one could:

st-sql 'delete from owner where ownerId="kkong"'

`st-sql` resides in /software/rt-math-1/maintenance/st-sql.