* person_id [INTEGER]  The id of the person who is staff.
  */
 $Staff = new RowManager_StaffManager();
 $Staff->dropTable();
 $Staff->createTable();
 /*
  * Viewer Table
  *
  * This is to use the accountadmin_viewer table to add an admin to the hrdb module.
  *
  * viewer_userID [STRING]  This stored the user id of the viewer.
  * viewer_id [INTEGER]  This is the id number for the viewer.
  */
 $Viewer = new RowManager_ViewerManager();
 $Viewer->dropTable();
 $Viewer->createTable();
 /*
  * Staff Table
  *
  * DAObj to manage the staff table.
  *
  * staff_id [INTEGER]  The id for the staff member.
  * person_id [INTEGER]  The id of the person who is staff.
  */
 $Staff = new RowManager_StaffManager();
 $Staff->dropTable();
 $Staff->createTable();
 /*
  * Assignments Table
  *
  * This manages the campus assignments table.