Guest User

Untitled

a guest
Jan 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. CREATE TABLE `metric` (
  2. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  3. `host` varchar(50) NOT NULL,
  4. `userid` int(10) unsigned DEFAULT NULL,
  5. `name` varchar(255) NOT NULL,
  6. `sampleid` tinyint(3) unsigned NOT NULL,
  7. PRIMARY KEY (`id`),
  8. UNIQUE KEY `unique-metric` (`userid`,`host`,`name`,`sampleid`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
Add Comment
Please, Sign In to add comment