* timezones_offset [INTEGER]  The value for the timezones offset
  */
 $TimeZones = new RowManager_TimeZonesManager();
 $TimeZones->dropTable();
 $TimeZones->createTable();
 /*
  * PermissionsCampusAdmin Table
  *
  * Contains the relationship between the viewer and campus. Campus Admin can access all group on an individual campus.
  *
  * permissionsCampusAdmin_id [INTEGER]  ID of the campus admin permissions
  * viewer_id [INTEGER]  ID of the viewer
  * campus_id [INTEGER]  ID of the campus
  */
 $PermissionsCampusAdmin = new RowManager_PermissionsCampusAdminManager();
 $PermissionsCampusAdmin->dropTable();
 $PermissionsCampusAdmin->createTable();
 /*
  * PermissionsGroupAdmin Table
  *
  * Contains the relationship between viewer and group. Group admin can only access the group that they are assign to.
  *
  * permissionsGroupAdmin_id [INTEGER]  ID of the group admin permissions
  * viewer_id [INTEGER]  ID of the viewer
  * group_id [INTEGER]  ID of the group
  * permissionsGroupAdmin_emailNotification [INTEGER]  To send the email notification to the user?
  * permissionsGroupAdmin_admin [INTEGER]  Indicate if the user is the admin for the group.
  */
 $PermissionsGroupAdmin = new RowManager_PermissionsGroupAdminManager();
 $PermissionsGroupAdmin->dropTable();
 $PermissionsGroupAdmin->createTable();