5
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2024-09-19 21:52:30 +00:00
yggdrasil-map/web/database.sql

33 lines
695 B
MySQL
Raw Normal View History

2015-07-26 17:08:51 +00:00
CREATE DATABASE IF NOT EXISTS `cjdns`;
USE `cjdns`;
--
-- Table structure for table `edges`
--
DROP TABLE IF EXISTS `edges`;
CREATE TABLE `edges` (
`a` varchar(39) NOT NULL,
`b` varchar(39) NOT NULL,
`first_seen` int(11) NOT NULL,
`last_seen` int(11) NOT NULL,
2015-11-21 11:44:45 +00:00
`uploaded_by` varchar(200) NOT NULL,
PRIMARY KEY (`a`,`b`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `nodes`
--
DROP TABLE IF EXISTS `nodes`;
CREATE TABLE `nodes` (
`ip` varchar(39) NOT NULL,
`name` varchar(64) DEFAULT NULL,
`version` int(11) DEFAULT NULL,
`first_seen` int(11) NOT NULL,
`last_seen` int(11) NOT NULL,
PRIMARY KEY (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;