Changeset 103197 in vbox for trunk/src/VBox/ValidationKit/testmanager/db
- Timestamp:
- Feb 5, 2024 10:00:40 AM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161464
- Location:
- trunk/src/VBox/ValidationKit/testmanager/db
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseComments.pgsql
r98103 r103197 621 621 'Set if the test box does raw-mode tests.'; 622 622 623 COMMENT ON COLUMN TestBoxes.fNativeApi IS 624 'Set if the test box does native API (NEM) tests.'; 625 623 626 COMMENT ON COLUMN TestBoxes.cMbMemory IS 624 627 'The (approximate) memory size in megabytes (rounded down to nearest 4 MB).'; … … 933 936 COMMENT ON COLUMN VcsRevisions.sMessage IS 934 937 'The commit message.'; 938 939 COMMENT ON TABLE VcsBugReferences IS 940 'This is for relating commits to a bug and vice versa. 941 942 This feature isn''t so much for the test manager as a cheap way of extending 943 bug trackers without VCS integration. We just need to parse the commit 944 messages when inserting them into the VcsRevisions table. 945 946 Same input, updating and history considerations as VcsRevisions.'; 947 948 COMMENT ON COLUMN VcsBugReferences.sRepository IS 949 'The version control tree name.'; 950 951 COMMENT ON COLUMN VcsBugReferences.iRevision IS 952 'The version control tree revision number.'; 953 954 COMMENT ON COLUMN VcsBugReferences.sBugTracker IS 955 'The bug tracker identifier - see g_kdBugTrackers in config.py.'; 956 957 COMMENT ON COLUMN VcsBugReferences.lBugNo IS 958 'The bug number in the bug tracker.'; 935 959 936 960 COMMENT ON TABLE TestResultStrTab IS -
trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseInit.pgsql
r98103 r103197 883 883 --- Set if the test box does raw-mode tests. 884 884 fRawMode boolean DEFAULT NULL, 885 -- Set if the test box does native API (NEM) tests. 886 fNativeApi boolean DEFAULT NULL, 885 887 --- The (approximate) memory size in megabytes (rounded down to nearest 4 MB). 886 888 cMbMemory bigint DEFAULT NULL CHECK (cMbMemory IS NULL OR cMbMemory > 0),
Note:
See TracChangeset
for help on using the changeset viewer.