Guest User

Untitled

a guest
Apr 26th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. CREATE TABLE `ticket_action_log` (
  2. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  3. `ticket_id` int(11) NOT NULL,
  4. `action_source` tinyint(4) NOT NULL,
  5. `action_type` tinyint(4) NOT NULL,
  6. `action_by` int(11) NOT NULL,
  7. `action_at` datetime NOT NULL,
  8. PRIMARY KEY (`id`),
  9. KEY `ticket_action_idx` (`ticket_id`,`action_type`),
  10. KEY `usr_idx` (`action_by`)
  11. ) ENGINE=InnoDB AUTO_INCREMENT=136933 DEFAULT CHARSET=utf8
Add Comment
Please, Sign In to add comment