forked from gw0/BajtaHack2017-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbajtahack.sql
More file actions
125 lines (102 loc) · 3.21 KB
/
bajtahack.sql
File metadata and controls
125 lines (102 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Gostitelj: 127.0.0.1
-- Čas nastanka: 26. nov 2017 ob 08.04
-- Različica strežnika: 10.1.28-MariaDB
-- Različica PHP: 7.1.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Zbirka podatkov: `bajtahack`
--
-- --------------------------------------------------------
--
-- Struktura tabele `room`
--
CREATE TABLE `room` (
`roomID` int(11) NOT NULL,
`roomName` text NOT NULL,
`roomDescription` text,
`ipAddress` text,
`connected` int(11) DEFAULT NULL,
`configured` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Odloži podatke za tabelo `room`
--
INSERT INTO `room` (`roomID`, `roomName`, `roomDescription`, `ipAddress`, `connected`, `configured`) VALUES
(30, 'Peter', '', '192.168.0.130', 0, 0),
(34, 'test', '', '10.10.10.10', 0, NULL),
(35, 'test120', '', '192.168.0.120', 0, NULL);
-- --------------------------------------------------------
--
-- Struktura tabele `room_lights`
--
CREATE TABLE `room_lights` (
`lightID` int(11) NOT NULL,
`roomID` int(11) NOT NULL DEFAULT '0',
`offsetX` double NOT NULL DEFAULT '0',
`offsetY` double NOT NULL DEFAULT '0',
`gpioPin` int(11) NOT NULL DEFAULT '0',
`lightStatus` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Odloži podatke za tabelo `room_lights`
--
INSERT INTO `room_lights` (`lightID`, `roomID`, `offsetX`, `offsetY`, `gpioPin`, `lightStatus`) VALUES
(348, 35, 0.4218181818181818, 0.19859983862900152, 16, 0),
(349, 35, 0.5763636363636364, 0.19046975732818852, 24, 0),
(350, 35, 0.4218181818181818, 0.3883017356479717, 25, 0),
(351, 35, 0.58, 0.39101176274824273, 26, 0),
(352, 35, 0.5, 0.29074076003821564, 27, 0),
(357, 30, 0.4581818181818182, 0.20130986572927254, 25, 0),
(358, 30, 0.509090909090909, 0.4696025486561018, 24, 0),
(359, 30, 0.45454545454545453, 0.5799457994579946, 26, 0),
(360, 30, 0.5363636363636364, 0.23848238482384823, 27, 0);
--
-- Indeksi zavrženih tabel
--
--
-- Indeksi tabele `room`
--
ALTER TABLE `room`
ADD PRIMARY KEY (`roomID`);
--
-- Indeksi tabele `room_lights`
--
ALTER TABLE `room_lights`
ADD PRIMARY KEY (`lightID`,`roomID`),
ADD KEY `FK_room_lights_room` (`roomID`);
--
-- AUTO_INCREMENT zavrženih tabel
--
--
-- AUTO_INCREMENT tabele `room`
--
ALTER TABLE `room`
MODIFY `roomID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;
--
-- AUTO_INCREMENT tabele `room_lights`
--
ALTER TABLE `room_lights`
MODIFY `lightID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=361;
--
-- Omejitve tabel za povzetek stanja
--
--
-- Omejitve za tabelo `room_lights`
--
ALTER TABLE `room_lights`
ADD CONSTRAINT `FK_room_lights_room` FOREIGN KEY (`roomID`) REFERENCES `room` (`roomID`) ON DELETE CASCADE ON UPDATE CASCADE;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;