13 lines
779 B
SQL
13 lines
779 B
SQL
CREATE TABLE IF NOT EXISTS `clients_tarifs` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`idClient` int(11) NOT NULL,
|
|
`service` char(20) NOT NULL,
|
|
`log` char(20) NOT NULL COMMENT 'Element à facturer',
|
|
`type` enum('Unitaire','ForfaitLimit','ForfaitNolimit') NOT NULL,
|
|
`priceUnit` float NOT NULL DEFAULT '0' COMMENT 'Prix unitaire d''un élément',
|
|
`limit` int(11) NOT NULL DEFAULT '0' COMMENT 'Nombre limite de consommation',
|
|
`dateDebut` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Date de debut du contrat',
|
|
`duree` int(11) NOT NULL COMMENT 'Durée du contrat',
|
|
`doublon` enum('jour','mois','period','') NOT NULL COMMENT 'Période de dédoublonnage',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM COMMENT='Définition des tarifs pour les clients et services'; |