From 42d2e1ceb60341897725604d4632143ee8567689 Mon Sep 17 00:00:00 2001 From: tilman Date: Sat, 2 Mar 2019 17:01:45 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Eedldata.sql=E2=80=9C=20hinzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- edldata.sql | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 edldata.sql diff --git a/edldata.sql b/edldata.sql new file mode 100644 index 0000000..9b04e71 --- /dev/null +++ b/edldata.sql @@ -0,0 +1,27 @@ +-- +-- Tabellenstruktur für Tabelle `EdlData` +-- + +CREATE TABLE `EdlData` ( + `TimeStamp` datetime NOT NULL, + `Nearest5min` datetime NOT NULL, + `zaehlerstand_in` float NOT NULL, + `zaehlerstand_out` float NOT NULL, + `active_in` float NOT NULL, + `active_out` float NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Indizes der exportierten Tabellen +-- + +-- +-- Indizes für die Tabelle `EdlData` +-- +ALTER TABLE `EdlData` + ADD UNIQUE KEY `TimeStamp` (`TimeStamp`); +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 */;