Advertisement
ahmadtri26

tbl argo

Feb 28th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. CREATE TABLE `argo_transport` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `username` varchar(40) NOT NULL,
  4. `txno` varchar(120) NOT NULL,
  5. `distance` double NOT NULL,
  6. `duration` double NOT NULL,
  7. `last_lat` varchar(100) DEFAULT NULL,
  8. `last_lng` varchar(100) DEFAULT NULL,
  9. `last_tstamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  10. PRIMARY KEY (`id`),
  11. UNIQUE KEY `username` (`username`)
  12. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement