Example #1
0
 $CreditCardTransaction = new RowManager_CreditCardTransactionManager();
 $CreditCardTransaction->dropTable();
 $CreditCardTransaction->createTable();
 /*
  * FieldValue Table
  *
  * Assigns a value to a registration form field for some registrant.
  *
  * fieldvalues_id [INTEGER]  Unique identifier for the field value stored for a particular field-registrant combination.
  * fields_id [INTEGER]  Value identifying the form field being assigned the value.
  * fieldvalues_value [STRING]  The value being assigned to a particular form field for some registration.
  * registration_id [INTEGER]  The value identifying the registration associated with the field value assignment.
  */
 $FieldValue = new RowManager_FieldValueManager();
 $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();
 /*