Beispiel #1
0
  * country_shortDesc [STRING]  Short form of a country's name
  */
 $Country = new RowManager_CountryManager();
 $Country->dropTable();
 $Country->createTable();
 /*
  * Campus Table
  *
  * Manages the Campus Table
  *
  * campus_id [INTEGER]  The id of the campus.
  * campus_desc [STRING]  The name of the Campus.
  * campus_shortDesc [STRING]  The short name for the campus.
  */
 $Campus = new RowManager_CampusManager();
 $Campus->dropTable();
 $Campus->createTable();
 /*
  * Person Table
  *
  * Manages data associated with a person.
  *
  * person_id [INTEGER]  a person'd unique id
  * person_fname [STRING]  A person's first name
  * person_lname [STRING]  A person's last name
  * person_phone [STRING]  A person's phone number
  * person_email [STRING]  A person's email
  * person_addr [STRING]  A person's address
  * person_city [STRING]  A person's city.
  * province_id [INTEGER]  The person's province.
  * person_pc [STRING]  Person Postal Code