Exemplo n.º 1
0
  */
 $Assignments = new RowManager_AssignmentsManager();
 $Assignments->dropTable();
 $Assignments->createTable();
 /*
  * Access Table
  *
  * This manages the access table.
  *
  * access_id [INTEGER]  This is the key for the table
  * viewer_id [INTEGER]  This is the viewer(user) id of the user who is assigned to a person id.
  * person_id [INTEGER]  This is the person id connected to the viewer id.
  */
 $Access = new RowManager_AccessManager();
 $Access->dropTable();
 $Access->createTable();
 /*
  * Region Table
  *
  * manages regions
  *
  * region_id [INTEGER]  id of a region
  * reg_desc [STRING]  description of a region
  */
 $Region = new RowManager_RegionManager();
 $Region->dropTable();
 $Region->createTable();
 /*
  * EmergencyInfo Table
  *
  * a record of emergency info for a person