Esempio n. 1
0
 $FieldValue->dropTable();
 $FieldValue->createTable();
 /*
  * Registration Table
  *
  * Manages basic registration data for some person-event combination.
  *
  * registration_id [INTEGER]  Unique identifier for this particular registration record
  * event_id [INTEGER]  The event the person is registering for.
  * person_id [INTEGER]  The value identifying the person registering.
  * registration_date [DATE]  The date the registration was made.
  * registration_confirmNum [STRING]  The confirmation number for the registration.
  */
 $Registration = new RowManager_RegistrationManager();
 $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();
 /*