示例#1
0
  * 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
  *
  * Manages information related to someone who has PRC'd
  *
  * prc_id [INTEGER]  unique id
  * prc_firstName [STRING]  The first name of someone who has PRC'd
  * prcMethod_id [INTEGER]  The method by which someone came to Christ
  * prc_witnessName [STRING]  The name(s) of someone who witnessed this person make a decision
  * semester_id [INTEGER]  id of the semester
  * campus_id [INTEGER]  The campus where this person PRC'd
  */
 $PRC = new RowManager_PRCManager();
 $PRC->dropTable();