-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.sql
406 lines (327 loc) · 10.2 KB
/
database.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
-- phpMyAdmin SQL Dump
-- version 3.4.5deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 17. Feb 2012 um 22:04
-- Server Version: 5.1.58
-- PHP-Version: 5.3.6-13ubuntu3.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Datenbank: `sensor_data`
--
-- --------------------------------------------------------
--
-- Table structure for table `api_accounts`
--
CREATE TABLE IF NOT EXISTS `api_accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` text NOT NULL,
`hash` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
-- --------------------------------------------------------
--
-- Table structure for table `battery_changes`
--
CREATE TABLE IF NOT EXISTS `battery_changes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sensor` int(11) NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `sensor` (`sensor`),
KEY `sensor_2` (`sensor`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `sensors`
--
CREATE TABLE IF NOT EXISTS `sensors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sensor` int(11) NOT NULL,
`type` text NOT NULL,
`description` text NOT NULL,
`hide` tinyint NOT NULL DEFAULT 0,
`display_name` text,
PRIMARY KEY (`id`),
KEY `sensor` (`sensor`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
--
-- Daten für Tabelle `sensors`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `sensor_cache`
--
CREATE TABLE IF NOT EXISTS `sensor_cache` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`sensor` int(11) NOT NULL,
`what` int(11) NOT NULL,
`value` float NOT NULL,
PRIMARY KEY (`id`),
KEY `sensor` (`sensor`),
KEY `what` (`what`),
KEY `sensor_cache_timestamp_idx` (`timestamp`),
KEY `sensor_cache_sensor_what_timestamp_idx` (`sensor`,`what`,`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
--
-- Daten für Tabelle `sensor_cache`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `sensor_data`
--
CREATE TABLE IF NOT EXISTS `sensor_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`sensor` int(11) NOT NULL,
`what` int(11) NOT NULL,
`value` float NOT NULL,
PRIMARY KEY (`id`),
KEY `sensor` (`sensor`),
KEY `what` (`what`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
--
-- Daten für Tabelle `sensor_data`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `sensor_limits`
--
CREATE TABLE IF NOT EXISTS `sensor_limits` (
`sensor` int(11) NOT NULL,
`value` int(30) NOT NULL,
`low_crit` float NOT NULL,
`low_warn` float NOT NULL,
`high_warn` float NOT NULL,
`high_crit` float NOT NULL,
PRIMARY KEY (`sensor`,`value`),
KEY `value` (`value`),
KEY `sensor` (`sensor`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `sensor_limits`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `sensor_values`
--
CREATE TABLE IF NOT EXISTS `sensor_values` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`short` varchar(20) NOT NULL,
`unit` text NOT NULL,
`format` text NOT NULL,
`min` float DEFAULT NULL,
`max` float DEFAULT NULL,
`decimals` int(11) NOT NULL,
`hide` tinyint NOT NULL DEFAULT 0,
`rigid` tinyint NOT NULL DEFAULT 0,
`limit_graph` tinyint NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
--
-- Daten für Tabelle `sensor_values`
--
INSERT INTO `sensor_values` (`id`, `name`, `short`, `unit`, `format`, `min`, `max`, `decimals`, `limit_graph`) VALUES
(1, 'Temperature', 'temp', 'Celsius', '%s °C', NULL, NULL, 1, 0),
(2, 'Humidity', 'humid', 'Percent', '%s %', 0, 100, 0, 1),
(3, 'Wind speed', 'wind', 'km/h', '%s km/h', 0, NULL, 0, 1),
(4, 'Precipitation', 'rain', 'Millimetres', '%s mm', 0, NULL, 0, 1);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `raw_data`
--
CREATE TABLE IF NOT EXISTS `raw_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`data` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `cronjob_executions`
--
CREATE TABLE IF NOT EXISTS `cronjob_executions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `munin_graphs`
--
CREATE TABLE IF NOT EXISTS `munin_graphs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`url` text NOT NULL,
`row` int(11) NOT NULL,
`height` int(11) NOT NULL,
`width` int(11) NOT NULL,
`hide` tinyint NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `account_location`
--
CREATE TABLE `account_location` (
`account` int(11) NOT NULL DEFAULT '0',
`location` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `graph_group`
--
CREATE TABLE `graph_group` (
`graph` int(11) NOT NULL DEFAULT '0',
`group` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `group`
--
CREATE TABLE `group` (
`id` int(11) NOT NULL,
`location` int(11) NOT NULL,
`name` text NOT NULL,
`visible` tinyint(4) NOT NULL,
`pos` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `location`
--
CREATE TABLE `location` (
`id` int(11) NOT NULL,
`name` text NOT NULL,
`visible` tinyint(4) NOT NULL,
`pos` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `sensor_group`
--
CREATE TABLE `sensor_group` (
`sensor` int(11) NOT NULL DEFAULT '0',
`group` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `all_time_list`
--
CREATE TABLE `all_time_list` (
`sensor` int(11) NOT NULL,
`what` int(11) NOT NULL,
`min_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`min` float NOT NULL,
`max_timestamp` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`max` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indizes der exportierten Tabellen
--
--
-- Indizes für die Tabelle `account_location`
--
ALTER TABLE `account_location`
ADD PRIMARY KEY (`account`,`location`),
ADD KEY `location` (`location`);
--
-- Indizes für die Tabelle `graph_group`
--
ALTER TABLE `graph_group`
ADD PRIMARY KEY (`graph`,`group`),
ADD KEY `group` (`group`);
--
-- Indizes für die Tabelle `group`
--
ALTER TABLE `group`
ADD PRIMARY KEY (`id`),
ADD KEY `location` (`location`);
--
-- Indizes für die Tabelle `location`
--
ALTER TABLE `location`
ADD PRIMARY KEY (`id`);
--
-- Indizes für die Tabelle `sensor_group`
--
ALTER TABLE `sensor_group`
ADD PRIMARY KEY (`sensor`,`group`),
ADD KEY `group` (`group`);
--
-- Indizes für die Tabelle `all_time_list`
--
ALTER TABLE `all_time_list`
ADD PRIMARY KEY (`sensor`,`what`),
ADD KEY `what` (`what`);
--
-- AUTO_INCREMENT für exportierte Tabellen
--
--
-- AUTO_INCREMENT für Tabelle `group`
--
ALTER TABLE `group`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT für Tabelle `location`
--
ALTER TABLE `location`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- Constraints der exportierten Tabellen
--
--
-- Constraints der Tabelle `sensor_cache`
--
ALTER TABLE `sensor_cache`
ADD CONSTRAINT `sensor_cache_ibfk_2` FOREIGN KEY (`what`) REFERENCES `sensor_values` (`id`),
ADD CONSTRAINT `sensor_cache_ibfk_1` FOREIGN KEY (`sensor`) REFERENCES `sensors` (`id`);
--
-- Constraints der Tabelle `sensor_data`
--
ALTER TABLE `sensor_data`
ADD CONSTRAINT `sensor_data_ibfk_2` FOREIGN KEY (`what`) REFERENCES `sensor_values` (`id`),
ADD CONSTRAINT `sensor_data_ibfk_1` FOREIGN KEY (`sensor`) REFERENCES `sensors` (`id`);
--
-- Constraints der Tabelle `sensor_limits`
--
ALTER TABLE `sensor_limits`
ADD CONSTRAINT `sensor_limits_ibfk_2` FOREIGN KEY (`value`) REFERENCES `sensor_values` (`id`),
ADD CONSTRAINT `sensor_limits_ibfk_1` FOREIGN KEY (`sensor`) REFERENCES `sensors` (`id`);
--
-- Constraints for table `battery_changes`
--
ALTER TABLE `battery_changes`
ADD CONSTRAINT `battery_changes_ibfk_1` FOREIGN KEY (`sensor`) REFERENCES `sensors` (`id`);
--
-- Constraints der Tabelle `account_location`
--
ALTER TABLE `account_location`
ADD CONSTRAINT `account_location_ibfk_2` FOREIGN KEY (`location`) REFERENCES `location` (`id`),
ADD CONSTRAINT `account_location_ibfk_1` FOREIGN KEY (`account`) REFERENCES `api_accounts` (`id`);
--
-- Constraints der Tabelle `graph_group`
--
ALTER TABLE `graph_group`
ADD CONSTRAINT `graph_group_ibfk_2` FOREIGN KEY (`group`) REFERENCES `group` (`id`),
ADD CONSTRAINT `graph_group_ibfk_1` FOREIGN KEY (`graph`) REFERENCES `munin_graphs` (`id`);
--
-- Constraints der Tabelle `group`
--
ALTER TABLE `group`
ADD CONSTRAINT `group_ibfk_1` FOREIGN KEY (`location`) REFERENCES `location` (`id`);
--
-- Constraints der Tabelle `sensor_group`
--
ALTER TABLE `sensor_group`
ADD CONSTRAINT `sensor_group_ibfk_2` FOREIGN KEY (`group`) REFERENCES `group` (`id`),
ADD CONSTRAINT `sensor_group_ibfk_1` FOREIGN KEY (`sensor`) REFERENCES `sensors` (`id`);
--
-- Constraints der Tabelle `all_time_list`
--
ALTER TABLE `all_time_list`
ADD CONSTRAINT `all_time_list_ibfk_2` FOREIGN KEY (`what`) REFERENCES `sensor_values` (`id`),
ADD CONSTRAINT `all_time_list_ibfk_1` FOREIGN KEY (`sensor`) REFERENCES `sensors` (`id`);