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
| -- phpMyAdmin SQL Dump
-- version 4.4.13.1
-- http://www.phpmyadmin.net
--
-- Client : xxxxxx.mysql.db
-- Généré le : Lun 31 Juillet 2017 à 10:40
-- Version du serveur : 5.6.34-log
-- Version de PHP : 5.6.30
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 utf8mb4 */;
--
-- Base de données : `xxxxxx`
--
-- --------------------------------------------------------
--
-- Structure de la table `ps_product_supplier`
--
CREATE TABLE IF NOT EXISTS `ps_product_supplier` (
`id_product_supplier` int(11) unsigned NOT NULL,
`id_product` int(11) unsigned NOT NULL,
`id_product_attribute` int(11) unsigned NOT NULL DEFAULT '0',
`id_supplier` int(11) unsigned NOT NULL,
`product_supplier_reference` varchar(32) DEFAULT NULL,
`product_supplier_price_te` decimal(20,6) NOT NULL DEFAULT '0.000000',
`id_currency` int(11) unsigned NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8;
--
-- Vider la table avant d'insérer `ps_product_supplier`
--
TRUNCATE TABLE `ps_product_supplier`;
--
-- Contenu de la table `ps_product_supplier`
--
INSERT INTO `ps_product_supplier` (`id_product_supplier`, `id_product`, `id_product_attribute`, `id_supplier`, `product_supplier_reference`, `product_supplier_price_te`, `id_currency`) VALUES
(260, 13, 0, 0, '87091b_1', '0.000000', 0),
(261, 774, 0, 0, '', '0.000000', 0),
(262, 775, 0, 0, '', '0.000000', 0),
(292, 564, 0, 0, '', '0.000000', 0),
(293, 565, 0, 0, '', '0.000000', 0);
--
-- Index pour les tables exportées
--
--
-- Index pour la table `ps_product_supplier`
--
ALTER TABLE `ps_product_supplier`
ADD PRIMARY KEY (`id_product_supplier`),
ADD UNIQUE KEY `id_product` (`id_product`,`id_product_attribute`,`id_supplier`),
ADD KEY `id_supplier` (`id_supplier`,`id_product`);
--
-- AUTO_INCREMENT pour les tables exportées
--
--
-- AUTO_INCREMENT pour la table `ps_product_supplier`
--
ALTER TABLE `ps_product_supplier`
MODIFY `id_product_supplier` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=294;
/*!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 */; |
Partager