Changeset 64948 in vbox
- Timestamp:
- Dec 17, 2016 8:40:09 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/testmanager/db
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseComments.pgsql
r61473 r64948 447 447 'Test case scheduling priority. 448 448 Higher number causes the test case to be run more frequently. 449 @sa SchedGroupMembers.iSchedPriority 449 @sa SchedGroupMembers.iSchedPriority, TestBoxesInSchedGroups.iSchedPriority 450 450 @todo Not sure we want to keep this...'; 451 451 … … 543 543 544 544 COMMENT ON COLUMN SchedGroupMembers.iSchedPriority IS 545 'The scheduling priority if the test group.545 'The scheduling priority of the test group. 546 546 Higher number causes the test case to be run more frequently. 547 @sa TestGroupMembers.iSchedPriority ';547 @sa TestGroupMembers.iSchedPriority, TestBoxesInSchedGroups.iSchedPriority'; 548 548 549 549 … … 716 716 717 717 718 COMMENT ON TABLE TestBoxesInSchedGroups IS 719 'N:M relationship between test boxes and scheduling groups. 720 721 We associate a priority with this relationship. 722 723 @remarks This table stores history. Never update or delete anything. The 724 equivalent of deleting is done by setting the ''tsExpire'' field to 725 current_timestamp. To select the currently valid entries use 726 tsExpire = TIMESTAMP WITH TIME ZONE ''infinity''.'; 727 728 729 COMMENT ON COLUMN TestBoxesInSchedGroups.tsEffective IS 730 'When this row starts taking effect (inclusive).'; 731 732 733 COMMENT ON COLUMN TestBoxesInSchedGroups.tsExpire IS 734 'When this row stops being tsEffective (exclusive).'; 735 736 737 COMMENT ON COLUMN TestBoxesInSchedGroups.uidAuthor IS 738 'The user id of the one who created/modified this entry. 739 Non-unique foreign key: Users(uid)'; 740 741 742 COMMENT ON COLUMN TestBoxesInSchedGroups.iSchedPriority IS 743 'The scheduling priority of the scheduling group for the test box. 744 Higher number causes the scheduling group to be serviced more frequently. 745 @sa TestGroupMembers.iSchedPriority, SchedGroups.iSchedPriority'; 746 747 718 748 COMMENT ON TABLE FailureCategories IS 719 749 'Failure categories. … … 1259 1289 1260 1290 1291 COMMENT ON COLUMN TestBoxStatuses.iWorkItem IS 1292 'Interal work item number. 1293 This is used to pick and prioritize between multiple scheduling groups.'; 1294 1295 1261 1296 COMMENT ON TABLE GlobalResourceStatuses IS 1262 1297 'Global resource status, tracks which test set resources are allocated by. -
trunk/src/VBox/ValidationKit/testmanager/db/partial-db-dump.py
r62471 r64948 91 91 'FailureReasons', 92 92 'GlobalResources', 93 'TestBoxStrTab', 93 94 'Testcases', 94 95 'TestcaseArgs',
Note:
See TracChangeset
for help on using the changeset viewer.