Differences From Artifact [cee83ae5c8]:
- File src/tktsetup.c — part of check-in [9f53093dca] at 2021-10-16 06:59:23 on branch trunk — In the default ticket view, add a SPAN with CSS class tktDspCommenter around the commenter's name, per suggestion in [forum:491ed22f44|forum post 491ed22f44]. (user: stephan size: 24573) [more...]
To Artifact [3dd7e9ffb2]:
- File src/tktsetup.c — part of check-in [d681e1dc1d] at 2022-05-01 21:00:31 on branch tkt-ucard — Add support for optional tkt_ucard column of the TICKETCHNG table. If this column is present then its value is populated from the U-card of the corresponding artifact. (user: george size: 24625)
| ︙ | |||
84 85 86 87 88 89 90 91 92 93 94 95 96 97 | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | + | @ 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, @ -- tkt_ucard TEXT, -- optional predefined field @ -- Add as many fields as required below this line @ login TEXT, @ username TEXT, @ mimetype TEXT, @ icomment TEXT @ ); @ CREATE INDEX ticketchng_idx1 ON ticketchng(tkt_id, tkt_mtime); |
| ︙ |