Example #1
0
  * semesterreport_avgPrayer [INTEGER]  Average attendence at prayer meetings over the semester
  * semesterreport_avgWklyMtg [INTEGER]  The average attendence at the weekly meetings over the semester.
  * semesterreport_numStaffChall [INTEGER]  Number of people challenged to staff
  * semesterreport_numInternChall [INTEGER]  number challenged to an internship
  * semesterreport_numFrosh [INTEGER]  number of frosh involved
  * semesterreport_numStaffDG [INTEGER]  number of staff led DGs
  * semesterreport_numInStaffDG [INTEGER]  number of students in staff led DGs
  * semesterreport_numStudentDG [INTEGER]  number of student led DGs
  * semesterreport_numInStudentDG [INTEGER]  number of students in student-led DGs
  * semesterreport_numSpMultStaffDG [INTEGER]  Number of SP mults in staff led DGs
  * semesterreport_numSpMultStdDG [INTEGER]  Number of sp mults in student led DGs
  * semester_id [INTEGER]  id of the semester
  * campus_id [INTEGER]  id of the campus
  */
 $SemesterReport = new RowManager_SemesterReportManager();
 $SemesterReport->dropTable();
 $SemesterReport->createTable();
 /*
  * PrcMethod Table
  *
  * Manages methods by which people PRC
  *
  * prcMethod_id [INTEGER]  unique id
  * prcMethod_desc [STRING]  Textual description of the prc method
  */
 $PrcMethod = new RowManager_PrcMethodManager();
 $PrcMethod->dropTable();
 $PrcMethod->createTable();
 /*
  * PRC Table
  *