-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitecommerce.sql
127 lines (102 loc) · 3.45 KB
/
sitecommerce.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1:3306
-- Généré le : mer. 02 mai 2018 à 08:34
-- Version du serveur : 5.7.19
-- Version de PHP : 5.6.31
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 */;
--
-- Base de données : `sitecommerce`
--
-- --------------------------------------------------------
--
-- Structure de la table `categorie`
--
DROP TABLE IF EXISTS `categorie`;
CREATE TABLE IF NOT EXISTS `categorie` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`categorieImage` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `categorie`
--
INSERT INTO `categorie` (`id`, `name`, `categorieImage`) VALUES
(11, 'categorie', ''),
(10, 'mode', ''),
(9, 'auto1', ''),
(17, 'categorieUpload', 'imageCat_3f8ee09'),
(18, 'jjbk', 'imageCat_0753a43'),
(19, 'tss form', 'imageCat_61d009d'),
(20, 'tss rehetra', 'imageCat_0845e4a');
-- --------------------------------------------------------
--
-- Structure de la table `poids`
--
DROP TABLE IF EXISTS `poids`;
CREATE TABLE IF NOT EXISTS `poids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`prix` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `poids`
--
INSERT INTO `poids` (`id`, `name`, `prix`) VALUES
(1, '300', 20),
(2, '500', 40);
-- --------------------------------------------------------
--
-- Structure de la table `produit`
--
DROP TABLE IF EXISTS `produit`;
CREATE TABLE IF NOT EXISTS `produit` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`titre` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`description` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`prix` double DEFAULT NULL,
`categorie` varchar(255) NOT NULL,
`poids` varchar(255) NOT NULL,
`shipping` int(11) NOT NULL,
`tva` double(18,3) DEFAULT NULL,
`prixFinale` float(18,3) NOT NULL,
`stock` int(11) NOT NULL,
`imageProduit` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `produit`
--
INSERT INTO `produit` (`id`, `titre`, `description`, `prix`, `categorie`, `poids`, `shipping`, `tva`, `prixFinale`, `stock`, `imageProduit`) VALUES
(46, 'produit1?', 'zkfhzofka', 400, 'mode', '', 0, NULL, 0.000, 9, 'produit1');
-- --------------------------------------------------------
--
-- Structure de la table `users`
--
DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(55) NOT NULL,
`password` varchar(55) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `users`
--
INSERT INTO `users` (`id`, `username`, `password`) VALUES
(1, 'admin', 'admin');
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 */;