Differences From Artifact [bdce1faa3e]:
- File src/tktsetup.c — part of check-in [28faff0d6a] at 2012-12-01 03:55:19 on branch trunk — Update the default new-ticket and edit-ticket scripts so that the Submit button is still shown after a prior submit attempt where the captcha failed. (user: drh size: 22519) [more...]
To Artifact [57ed694ac5]:
- File src/tktsetup.c — part of check-in [a18a49c875] at 2013-01-11 18:03:47 on branch trunk — Enhancements to the TICKETCHNG table: (1) Add the tkt_rid column and populate it (if present) with the recordID of the artifact. (2) For columns that appear in both TICKET and TICKETCHNG but are missing from the artifact, fill in the TICKETCHNG value with the value from TICKET at that point in time. (3) Add the test-ticket-rebuild command for testing the above. (user: drh size: 22556)
| ︙ | ︙ | |||
80 81 82 83 84 85 86 87 88 89 90 91 92 93 | @ resolution TEXT, @ title TEXT, @ comment TEXT @ ); @ CREATE TABLE ticketchng( @ -- Do not change any column that begins with tkt_ @ tkt_id INTEGER REFERENCES ticket, @ tkt_mtime DATE, @ -- Add as many fields as required below this line @ login TEXT, @ username TEXT, @ mimetype TEXT, @ icomment TEXT @ ); | > | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | @ resolution TEXT, @ title TEXT, @ comment TEXT @ ); @ CREATE TABLE ticketchng( @ -- Do not change any column that begins with tkt_ @ tkt_id INTEGER REFERENCES ticket, @ tkt_rid INTEGER REFERENCES blob, @ tkt_mtime DATE, @ -- Add as many fields as required below this line @ login TEXT, @ username TEXT, @ mimetype TEXT, @ icomment TEXT @ ); |
| ︙ | ︙ |