Ejemplo n.º 1
0
  */
 $StatisticValue = new RowManager_StatValueManager();
 $StatisticValue->dropTable();
 $StatisticValue->createTable();
 /*
  * MeasurementType Table
  *
  * Stores a stats measurement type (i.e. 'Personal Ministry')
  *
  * meas_id [INTEGER]  the unique identifier
  * meas_name [STRING]  the name of the Measurement Type
  * meas_desc [STRING]  The Measurement Type description
  */
 $MeasurementType = new RowManager_MeasureTypeManager();
 $MeasurementType->dropTable();
 $MeasurementType->createTable();
 /*
  * Scope Table
  *
  * stores a statistic scope (i.e. Ministry, Region, etc)
  *
  * scope_id [INTEGER]  the object's unique identifier
  * scope_name [STRING]  the name of the Scope
  * scope_reftable [STRING]  the particular scope's reference table (i.e. p2c_stats_ministry)
  */
 $Scope = new RowManager_ScopeManager();
 $Scope->dropTable();
 $Scope->createTable();
 /*
  * ReportCalculation Table
  *