Exemplo n.º 1
0
  */
 $Province = new RowManager_ProvinceManager();
 $Province->dropTable();
 $Province->createTable();
 /*
  * Country Table
  *
  * Manages countries
  *
  * country_id [INTEGER]  id of a country
  * country_desc [STRING]  Textual name of a country
  * 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
  *