Overview
Comment: | Added item_path to the tests_index |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
581d1148b459ecfaefde61b6c70ed08d |
User & Date: | mrwellan on 2012-03-13 20:13:47 |
Other Links: | manifest | tags |
Context
2012-03-19
| ||
20:04 | Merged servermode to trunk check-in: 0e271e38b4 user: matt tags: trunk | |
2012-03-13
| ||
20:13 | Added item_path to the tests_index check-in: 581d1148b4 user: mrwellan tags: trunk | |
06:59 | Merged servermode to trunk check-in: 3e2cee87de user: matt tags: trunk | |
Changes
Modified db.scm from [48ed807e56] to [84a9b41337].
︙ | ︙ | |||
103 104 105 106 107 108 109 | comment TEXT DEFAULT '', event_time TIMESTAMP, fail_count INTEGER DEFAULT 0, pass_count INTEGER DEFAULT 0, archived INTEGER DEFAULT 0, -- 0=no, 1=in progress, 2=yes CONSTRAINT testsconstraint UNIQUE (run_id, testname, item_path) );") | | | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | comment TEXT DEFAULT '', event_time TIMESTAMP, fail_count INTEGER DEFAULT 0, pass_count INTEGER DEFAULT 0, archived INTEGER DEFAULT 0, -- 0=no, 1=in progress, 2=yes CONSTRAINT testsconstraint UNIQUE (run_id, testname, item_path) );") (sqlite3:execute db "CREATE INDEX tests_index ON tests (run_id, testname, item_path);") (sqlite3:execute db "CREATE VIEW runs_tests AS SELECT * FROM runs INNER JOIN tests ON runs.id=tests.run_id;") (sqlite3:execute db "CREATE TABLE IF NOT EXISTS test_steps (id INTEGER PRIMARY KEY, test_id INTEGER, stepname TEXT, state TEXT DEFAULT 'NOT_STARTED', status TEXT DEFAULT 'n/a', |
︙ | ︙ |