Created
February 20, 2019 21:11
-
-
Save recklessop/d20a2938899b8340c65ea23382c0241b to your computer and use it in GitHub Desktop.
daily stats table structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 4.5.4.1deb2ubuntu2.1 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: localhost | |
-- Generation Time: Feb 20, 2019 at 04:11 PM | |
-- Server version: 5.7.24-0ubuntu0.16.04.1 | |
-- PHP Version: 7.0.32-0ubuntu0.16.04.1 | |
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: `zerto` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `dailystats` | |
-- | |
CREATE TABLE `dailystats` ( | |
`id` int(11) NOT NULL, | |
`datestamp` datetime NOT NULL, | |
`vm` varchar(255) NOT NULL, | |
`WriteIOps` float NOT NULL DEFAULT '0', | |
`WriteKBps` float NOT NULL DEFAULT '0' | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
-- | |
-- Indexes for dumped tables | |
-- | |
-- | |
-- Indexes for table `dailystats` | |
-- | |
ALTER TABLE `dailystats` | |
ADD PRIMARY KEY (`id`); | |
-- | |
-- AUTO_INCREMENT for dumped tables | |
-- | |
-- | |
-- AUTO_INCREMENT for table `dailystats` | |
-- | |
ALTER TABLE `dailystats` | |
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; | |
/*!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 */; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment