示例#1
0
  * staffscheduletype_id [INTEGER]  The primary id of the object - same primary ID as the schedule form type object.
  */
 $StaffScheduleInstr = new RowManager_StaffScheduleInstrManager();
 $StaffScheduleInstr->dropTable();
 $StaffScheduleInstr->createTable();
 /*
  * StaffDirector Table
  *
  * Stores staff-to-director associations. That is, it indicates which staff have which other staff as their director(s).
  *
  * staffdirector_id [INTEGER]  The unique ID of the staff-to-director association
  * staff_id [INTEGER]  The ID of the staff to be associated with a director.
  * director_id [INTEGER]  The staff ID of the staff director supervising the staff member indicated in the "staff_id" field.
  */
 $StaffDirector = new RowManager_StaffDirectorManager();
 $StaffDirector->dropTable();
 $StaffDirector->createTable();
 /*
  * CustomReports Table
  *
  * The object that allows access and editing of custom report names.
  *
  * report_id [INTEGER]  The unique ID of the custom report.
  * report_name [STRING]  The name of the custom HRDB report.
  */
 $CustomReports = new RowManager_CustomReportsManager();
 $CustomReports->dropTable();
 $CustomReports->createTable();
 /*
  * CustomFields Table
  *