Ejemplo n.º 1
0
  * priv_id [INTEGER]  The privilege ID assigned to the user(viewer).
  */
 $Admin = new RowManager_AdminManager();
 $Admin->dropTable();
 $Admin->createTable();
 /*
  * Priv Table
  *
  * Manager for the Privileges table.
  *
  * priv_id [INTEGER]  The id for the privilege
  * priv_accesslevel [STRING]  The access level associated with the ID.
  */
 $Priv = new RowManager_PrivManager();
 $Priv->dropTable();
 $Priv->createTable();
 /*
  * CampusAdmin Table
  *
  * Manage for the CampusAdmin table.
  *
  * campusadmin_id [INTEGER]  ID for the assignment
  * admin_id [INTEGER]  The id from the admin table.
  * campus_id [INTEGER]  The id for the campus being assigned to the viewer.
  */
 $CampusAdmin = new RowManager_CampusAdminManager();
 $CampusAdmin->dropTable();
 $CampusAdmin->createTable();
 /*
  * Staff Table
  *