-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdatabase.sql
54 lines (43 loc) · 1015 Bytes
/
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
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Jan 10, 2017 at 01:44 AM
-- Server version: 5.6.28
-- PHP Version: 5.6.25
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `php-db-form`
--
-- --------------------------------------------------------
--
-- Table structure for table `emails`
--
CREATE TABLE `emails` (
`id` int(11) UNSIGNED NOT NULL,
`address` varchar(255) NOT NULL,
`created_at` int(11) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `emails`
--
INSERT INTO `emails` (`id`, `address`, `created_at`) VALUES
(1, '[email protected]', 1484007711);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `emails`
--
ALTER TABLE `emails`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `emails`
--
ALTER TABLE `emails`
MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;