-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path-- phpMyAdmin SQL Dump
54 lines (45 loc) · 1.25 KB
/
-- phpMyAdmin SQL Dump
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.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Nov 30, 2019 at 08:51 AM
-- Server version: 5.7.26
-- PHP Version: 7.3.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `Skincare Products`
--
-- --------------------------------------------------------
--
-- Table structure for table `Product Variables`
--
CREATE TABLE `Product Variables` (
`Products` int(11) NOT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`quantity` int(100) NOT NULL,
`cost` int(100) NOT NULL,
`costrange` int(100) NOT NULL,
`productype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`concern` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`concernseverity` int(100) NOT NULL,
`skintype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`skinrange` int(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `Product Variables`
--
ALTER TABLE `Product Variables`
ADD PRIMARY KEY (`Products`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `Product Variables`
--
ALTER TABLE `Product Variables`
MODIFY `Products` int(11) NOT NULL AUTO_INCREMENT;