示例#1
0
 $Registration->dropTable();
 $Registration->createTable();
 /*
  * ScholarshipAssignment Table
  *
  * Assigns a scholarship to a registrant and manages affiliated data.
  *
  * scholarship_id [INTEGER]  Unique identifier of the scholarship being assigned.
  * registration_id [INTEGER]  Value identifying the registrant receiving the scholarship.
  * scholarship_amount [INTEGER]  The amount of money the scholarship is worth.
  * scholarship_sourceAcct [STRING]  The account number from where the scholarship originates.
  * scholarship_sourceDesc [STRING]  The description of the source account.
  */
 $ScholarshipAssignment = new RowManager_ScholarshipAssignmentManager();
 $ScholarshipAssignment->dropTable();
 $ScholarshipAssignment->createTable();
 /*
  * Status Table
  *
  * Used to describe what state a particular registration is in (unassigned, registered, cancelled, etc.)
  *
  * status_id [INTEGER]  Unique identifier of a particular registration status description
  * status_desc [STRING]  Description of some registration status
  */
 $Status = new RowManager_StatusManager();
 $Status->dropTable();
 $Status->createTable();
 /*
 * Receipt Table
 *
 * A record of an official Moneris operation associated with a particular transaction record.