Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- phpMyAdmin SQL Dump
- -- version 4.1.13
- -- http://www.phpmyadmin.net
- --
- -- Machine: localhost
- -- Gegenereerd op: 02 jul 2014 om 04:09
- -- Serverversie: 5.1.36
- -- PHP-versie: 5.3.26
- 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 utf8 */;
- --
- -- Databank: `homewizard`
- --
- CREATE DATABASE IF NOT EXISTS `homewizard` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
- USE `homewizard`;
- -- --------------------------------------------------------
- --
- -- Tabelstructuur voor tabel `EnergyLinkDay`
- --
- DROP TABLE IF EXISTS `EnergyLinkDay`;
- CREATE TABLE IF NOT EXISTS `EnergyLinkDay` (
- `id` INT(11) NOT NULL,
- `name` text NOT NULL,
- `t` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- `u` INT(11) NOT NULL,
- `a` INT(11) NOT NULL,
- `s1` INT(11) NOT NULL,
- `s2` INT(11) NOT NULL,
- `g` DECIMAL(5,2) NOT NULL
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
- -- --------------------------------------------------------
- --
- -- Tabelstructuur voor tabel `Thermometers`
- --
- DROP TABLE IF EXISTS `Thermometers`;
- CREATE TABLE IF NOT EXISTS `Thermometers` (
- `id` INT(11) NOT NULL,
- `name` text NOT NULL,
- `time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- `te` DECIMAL(5,1) NOT NULL,
- `hu` INT(11) NOT NULL
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
- /*!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 */;
Advertisement
Add Comment
Please, Sign In to add comment