preparing docker

This commit is contained in:
Dobromir Popov
2021-07-29 18:59:49 +03:00
parent 8921fbd5ac
commit b4b6e7f538
7 changed files with 45 additions and 5 deletions

84
mysql/dump.sql Normal file

File diff suppressed because one or more lines are too long

30
mysql/schema.sql Normal file
View File

@@ -0,0 +1,30 @@

DROP TABLE IF EXISTS `devicemessages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `devicemessages` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`device_id` int(20) NOT NULL,
`field_name` varchar(120) NOT NULL,
`field_value` text NOT NULL,
`timestamp` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1350 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE IF EXISTS `devices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `devices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`baseurl` text DEFAULT NULL,
`apikey` text DEFAULT NULL,
`config` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`lastseen` datetime DEFAULT NULL,
`createdAt` datetime NOT NULL,
`updatedAt` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;