-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Dec 19, 2019 at 08:09 PM
-- Server version: 10.1.41-MariaDB-0+deb9u1
-- PHP Version: 7.0.33-0+deb9u6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
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: `earthworm`
--
-- --------------------------------------------------------
--
-- Table structure for table `ew_repositories`
--
CREATE TABLE `ew_repositories` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `ew_rights`
--
CREATE TABLE `ew_rights` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`target_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`target_id` int(11) NOT NULL,
`mode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `ew_sslcerts`
--
CREATE TABLE `ew_sslcerts` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `ew_test`
--
CREATE TABLE `ew_test` (
`id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`number` int(11) NOT NULL,
`value` double NOT NULL,
`date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `ew_test`
--
INSERT INTO `ew_test` (`id`, `name`, `number`, `value`, `date`) VALUES
(1, 'test1', 1, 1.5, '2019-07-11 05:28:17'),
(2, 'test2', 2, 2.5, '2019-07-09 04:07:10');
-- --------------------------------------------------------
--
-- Table structure for table `ew_users`
--
CREATE TABLE `ew_users` (
`id` int(11) NOT NULL,
`login` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `ew_repositories`
--
ALTER TABLE `ew_repositories`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ew_rights`
--
ALTER TABLE `ew_rights`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ew_sslcerts`
--
ALTER TABLE `ew_sslcerts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ew_test`
--
ALTER TABLE `ew_test`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ew_users`
--
ALTER TABLE `ew_users`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `ew_repositories`
--
ALTER TABLE `ew_repositories`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `ew_rights`
--
ALTER TABLE `ew_rights`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `ew_sslcerts`
--
ALTER TABLE `ew_sslcerts`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `ew_test`
--
ALTER TABLE `ew_test`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `ew_users`
--
ALTER TABLE `ew_users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
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 */;