-
Notifications
You must be signed in to change notification settings - Fork 0
/
Light.sql
211 lines (172 loc) · 4.92 KB
/
Light.sql
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
-- phpMyAdmin SQL Dump
-- version 4.6.6deb5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Gegenereerd op: 10 jun 2021 om 17:02
-- Serverversie: 10.3.27-MariaDB-0+deb10u1
-- PHP-versie: 7.3.27-1~deb10u1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 */;
--
-- Database: `Light`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `Action`
--
CREATE TABLE `Action` (
`ID` int(11) NOT NULL,
`Created` text NOT NULL,
`Process` text NOT NULL,
`Type` text NOT NULL,
`Switch` text NOT NULL DEFAULT '',
`Par` text NOT NULL,
`Done` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Gegevens worden geëxporteerd voor tabel `Action`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `Current`
--
CREATE TABLE `Current` (
`SeqNr` int(11) NOT NULL,
`ID` text NOT NULL,
`Sunset` text NOT NULL,
`StartLightOn` text NOT NULL,
`LightOff` text NOT NULL,
`UpdateTime` text NOT NULL,
`Fase` int(11) NOT NULL,
`LightReading` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Gegevens worden geëxporteerd voor tabel `Current`
--
INSERT INTO `Current` (`SeqNr`, `ID`, `Sunset`, `StartLightOn`, `LightOff`, `UpdateTime`, `Fase`, `LightReading`) VALUES
(1, 'Light', '2021-06-10T22:00:25+02:00[Europe/Amsterdam]', '2021-06-10T21:00:25+02:00[Europe/Amsterdam]', '2021-06-10T23:38:00+02:00[Europe/Amsterdam]', '2021-06-11T10:00:00+02:00[Europe/Amsterdam]', 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `Log`
--
CREATE TABLE `Log` (
`SeqNr` int(11) NOT NULL,
`Time` text NOT NULL,
`Text` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Gegevens worden geëxporteerd voor tabel `Log`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `Setting`
--
CREATE TABLE `Setting` (
`SeqNr` int(11) NOT NULL,
`ID` text NOT NULL,
`Longitude` double NOT NULL,
`Lattitude` double NOT NULL,
`LightOffHour` int(11) NOT NULL,
`LightOffMin` int(11) NOT NULL,
`OffDuration` int(11) NOT NULL,
`SensorLimit` int(11) NOT NULL,
`PeriodDark` int(11) NOT NULL,
`PeriodSec` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Gegevens worden geëxporteerd voor tabel `Setting`
--
INSERT INTO `Setting` (`SeqNr`, `ID`, `Longitude`, `Lattitude`, `LightOffHour`, `LightOffMin`, `OffDuration`, `SensorLimit`, `PeriodDark`, `PeriodSec`) VALUES
(1, 'Light', 4.664475, 52.136223, 23, 30, 45, 5000, 3, 60);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `Switch`
--
CREATE TABLE `Switch` (
`SeqNr` int(11) NOT NULL,
`SeqNumber` int(11) NOT NULL,
`Name` text NOT NULL,
`Active` int(11) NOT NULL,
`Pause` int(11) NOT NULL,
`IP` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Gegevens worden geëxporteerd voor tabel `Switch`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `Version`
--
CREATE TABLE `Version` (
`ID` text CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '',
`Version` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Gegevens worden geëxporteerd voor tabel `Version`
--
INSERT INTO `Version` (`ID`, `Version`) VALUES
('\'Light\'', 200);
--
-- Indexen voor geëxporteerde tabellen
--
--
-- Indexen voor tabel `Action`
--
ALTER TABLE `Action`
ADD PRIMARY KEY (`ID`);
--
-- Indexen voor tabel `Current`
--
ALTER TABLE `Current`
ADD PRIMARY KEY (`SeqNr`);
--
-- Indexen voor tabel `Log`
--
ALTER TABLE `Log`
ADD PRIMARY KEY (`SeqNr`);
--
-- Indexen voor tabel `Setting`
--
ALTER TABLE `Setting`
ADD PRIMARY KEY (`SeqNr`);
--
-- Indexen voor tabel `Switch`
--
ALTER TABLE `Switch`
ADD PRIMARY KEY (`SeqNr`);
--
-- AUTO_INCREMENT voor geëxporteerde tabellen
--
--
-- AUTO_INCREMENT voor een tabel `Action`
--
ALTER TABLE `Action`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT voor een tabel `Current`
--
ALTER TABLE `Current`
MODIFY `SeqNr` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT voor een tabel `Log`
--
ALTER TABLE `Log`
MODIFY `SeqNr` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=590;
--
-- AUTO_INCREMENT voor een tabel `Setting`
--
ALTER TABLE `Setting`
MODIFY `SeqNr` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT voor een tabel `Switch`
--
ALTER TABLE `Switch`
MODIFY `SeqNr` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
/*!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 */;