Ejemplo n.º 1
0
  * campus_id [INTEGER]  The campus where this person PRC'd
  */
 $PRC = new RowManager_PRCManager();
 $PRC->dropTable();
 $PRC->createTable();
 /*
  * ExposureType Table
  *
  * The different types of evangelistic exposure
  *
  * exposuretype_id [INTEGER]  unique id
  * exposuretype_desc [STRING]  Text description of the exposure type.
  */
 $ExposureType = new RowManager_ExposureTypeManager();
 $ExposureType->dropTable();
 $ExposureType->createTable();
 /*
  * MoreStats Table
  *
  * Manages information regarding additonal weekly stats
  *
  * morestats_id [INTEGER]  unique id
  * morestats_exp [INTEGER]  How many exposures happened here.
  * morestats_notes [STRING]  Notes of the event that happened
  * week_id [INTEGER]  week_id
  * campus_id [INTEGER]  campus_id
  * exposuretype_id [INTEGER]  exposuretype_id
  */
 $MoreStats = new RowManager_MoreStatsManager();
 $MoreStats->dropTable();
 $MoreStats->createTable();