-
Notifications
You must be signed in to change notification settings - Fork 1
/
delivery.sql
55 lines (45 loc) · 1.49 KB
/
delivery.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
55
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Oct 27, 2019 at 12:25 AM
-- Server version: 5.5.44-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.11
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 */;
--
-- Database: `f31ee`
--
-- --------------------------------------------------------
--
-- Table structure for table `delivery`
--
CREATE TABLE IF NOT EXISTS `delivery` (
`orderID` int(11) NOT NULL,
`deliverytime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`orderID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `delivery`
--
INSERT INTO `delivery` (`orderID`, `deliverytime`) VALUES
(12, '2019-10-25 16:52:07'),
(13, '2019-10-26 09:03:00'),
(14, '2019-10-26 16:26:41'),
(15, '2019-10-25 23:26:58'),
(16, '2019-10-27 07:08:56'),
(17, '2019-10-27 07:15:32'),
(19, '2019-10-27 07:17:45'),
(20, '2019-10-27 07:54:16'),
(21, '2019-10-27 08:11:49'),
(22, '2019-10-27 08:13:10'),
(23, '2019-10-27 08:15:13'),
(24, '2019-10-27 16:13:06');
/*!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 */;