Index: trunk/extensions/UsabilityInitiative/ClickTracking/ClickTracking.sql |
— | — | @@ -28,7 +28,11 @@ |
29 | 29 | namespace integer NOT NULL, |
30 | 30 | |
31 | 31 | -- event ID (not unique) |
32 | | - event_id integer NOT NULL |
| 32 | + event_id integer NOT NULL, |
| 33 | + |
| 34 | + -- additional info for each click, such as state information |
| 35 | + additional_info varbinary(255) |
| 36 | + |
33 | 37 | ) /*$wgDBTableOptions*/; |
34 | 38 | |
35 | 39 | CREATE INDEX /*i*/click_tracking_action_time ON /*_*/click_tracking (action_time); |