Beispiel #1
0
  * pricerules_discount [INTEGER]  The actual discount to be applied to the price based on this price rule.
  */
 $PriceRule = new RowManager_PriceRuleManager();
 $PriceRule->dropTable();
 $PriceRule->createTable();
 /*
  * EventAdminCampusAssignment Table
  *
  * Assigns the event admin privileges of some user to a particular campus.
  *
  * campusaccess_id [INTEGER]  Identifier for a particular campus assignment to some event admin
  * eventadmin_id [INTEGER]  Identifier of the event admin who will be assigned a campus
  * campus_id [INTEGER]  The unique identifier that describes a particular university campus
  */
 $EventAdminCampusAssignment = new RowManager_EventAdminCampusAssignmentManager();
 $EventAdminCampusAssignment->dropTable();
 $EventAdminCampusAssignment->createTable();
 /*
  * CashTransaction Table
  *
  * Manages financial data pertaining to cash transactions between some registrant and the event host.
  *
  * cashtransaction_id [INTEGER]  Unique identifier of a particular cash transaction from some registrant to event host
  * reg_id [INTEGER]  Value identifying the registrant from which the cash originates (if value is positive)
  * cashtransaction_staffName [STRING]  The name of the staff member receiving the cash (or dispersing if cash value is negative).
  * cashtransaction_recd [INTEGER]  Whether or not payment was received (1 or 0 for true/false).
  * cashtransaction_amtPaid [INTEGER]  Dollar amount of cash transaction.
  * cashtransaction_moddate [DATE]  Modification timestamp for cash transaction record.
  */
 $CashTransaction = new RowManager_CashTransactionManager();
 $CashTransaction->dropTable();