-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_shop.sql
103 lines (83 loc) · 3.37 KB
/
my_shop.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
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1:3308
-- Généré le : Dim 25 oct. 2020 à 23:03
-- Version du serveur : 8.0.18
-- Version de PHP : 7.4.0
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 : `my_shop`
--
-- --------------------------------------------------------
--
-- Structure de la table `categories`
--
DROP TABLE IF EXISTS `categories`;
CREATE TABLE IF NOT EXISTS `categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `categories`
--
INSERT INTO `categories` (`id`, `name`, `parent_id`) VALUES
(1, 'feu', 1),
(2, 'eau', 2),
(3, 'acier', 3),
(4, 'dragon', 4),
(5, 'electrik', 5),
(6, 'vol', 6);
-- --------------------------------------------------------
--
-- Structure de la table `products`
--
DROP TABLE IF EXISTS `products`;
CREATE TABLE IF NOT EXISTS `products` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '0',
`price` float NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`img` text NOT NULL,
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `products`
--
INSERT INTO `products` (`id`, `name`, `price`, `category_id`, `img`, `description`) VALUES
(2, 'Tiplouf', 17.89, 2, 'https://vignette3.wikia.nocookie.net/pokemon/images/b/b4/393Piplup_Pokemon_Ranger_Guardian_Signs.png/revision/latest?cb=20150109224144%20width', 'Tiplouf est un petit Pokémon bleu clair qui ressemble à un manchot (son appellation « Pokémon Pingouin » provient d\'une erreur de traduction de la version anglaise, « penguin » voulant dire manchot et non pingouin), avec un duvet de plumes épais pour l\'is'),
(3, 'Leviator Shiny', 1045.99, 4, 'https://media.melty.fr/article-3961830-so/media.jpg', NULL),
(5, 'Rayquaza', 99.99, 6, 'https://45secondes.fr/wp-content/uploads/2020/08/Comment-capturer-Rayquaza-dans-les-raids-Pokemon-Go.jpg', NULL);
-- --------------------------------------------------------
--
-- 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(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`admin` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `users`
--
INSERT INTO `users` (`id`, `username`, `password`, `email`, `admin`) VALUES
(24, 'sergeoin', 'df6b9fb15cfdbb7527be5a8a6e39f39e572c8ddb943fbc79a943438e9d3d85ebfc2ccf9e0eccd9346026c0b6876e0e01556fe56f135582c05fbdbb505d46755a', '[email protected]', 0);
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 */;