extranet/includes/giant/commandes.sql

48 lines
1.6 KiB
MySQL
Raw Normal View History

2010-08-31 13:55:19 +00:00
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Serveur: localhost
2010-10-07 13:20:24 +00:00
-- Généré le : Jeu 07 Octobre 2010 à 11:41
2010-08-31 13:55:19 +00:00
-- Version du serveur: 5.1.40
-- Version de PHP: 5.3.1
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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 */;
--
-- Base de données: `giantclient`
--
-- --------------------------------------------------------
--
-- Structure de la table `commandes`
--
DROP TABLE IF EXISTS `commandes`;
CREATE TABLE IF NOT EXISTS `commandes` (
`OrderId` int(11) NOT NULL AUTO_INCREMENT,
`CountryCode` tinytext COLLATE utf8_unicode_ci NOT NULL,
`ProviderId` tinytext COLLATE utf8_unicode_ci NOT NULL,
2010-10-07 13:20:24 +00:00
`ProviderOrderId` int(11) NOT NULL,
`InternalOrderId` int(11) NOT NULL,
2010-08-31 13:55:19 +00:00
`CompanyId` bigint(20) NOT NULL,
`CompanyName` text COLLATE utf8_unicode_ci NOT NULL,
`ServiceLevelName` enum('Immediate','Normal','Urgent','Flash') COLLATE utf8_unicode_ci NOT NULL,
`DataSetType` enum('Full','Compact','CreditRecommendation','Flex') COLLATE utf8_unicode_ci NOT NULL,
`LanguageCode` enum('en','fr') COLLATE utf8_unicode_ci NOT NULL,
`OrderStatus` enum('Completed','Pending','Delivered','Undeliverable','Unlinked') COLLATE utf8_unicode_ci NOT NULL,
`OrderDateTime` datetime NOT NULL,
`DueDateTime` datetime NOT NULL,
`DateTimeCompleted` datetime NOT NULL,
`ReportId` int(11) NOT NULL,
`User` tinytext COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`OrderId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;