Skip to content

Instantly share code, notes, and snippets.

/schema Secret

Created September 3, 2012 21:06
Show Gist options
  • Save anonymous/c582872454d3c2629592 to your computer and use it in GitHub Desktop.
Save anonymous/c582872454d3c2629592 to your computer and use it in GitHub Desktop.
CREATE TABLE `tblhosts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`hostname` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
)
CREATE TABLE `tblroutes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`src` varchar(45) DEFAULT NULL,
`src_ip` varchar(45) DEFAULT NULL,
`dst` varchar(45) DEFAULT NULL,
`dst_ip` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment