예제 #1
0
  * weeklyReport_1on1GosPres [INTEGER]  number of 1 on 1 gospel presentations this week
  * weeklyReport_1on1HsPres [INTEGER]  number of 1 on 1 Holy Spirit presentations
  */
 $WeeklyReport = new RowManager_WeeklyReportManager();
 $WeeklyReport->dropTable();
 $WeeklyReport->createTable();
 /*
  * Week Table
  *
  * Manages information related to a week
  *
  * week_id [INTEGER]  unique id of the week
  * week_endDate [DATE]  Ending date of the week
  */
 $Week = new RowManager_WeekManager();
 $Week->dropTable();
 $Week->createTable();
 /*
  * Semester Table
  *
  * Manages information related to semesters
  *
  * semester_id [INTEGER]  unique id of a semester
  * semester_desc [STRING]  Textual description of the semester
  */
 $Semester = new RowManager_SemesterManager();
 $Semester->dropTable();
 $Semester->createTable();
 /*
  * SemesterReport Table
  *