17 lines
561 B
MySQL
17 lines
561 B
MySQL
|
|
||
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- Structure de la table `peripeties`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `peripeties` (
|
||
|
`id` int(11) NOT NULL,
|
||
|
`probabilite` tinyint(3) UNSIGNED NOT NULL COMMENT 'en pourcentage',
|
||
|
`effet` int(11) NOT NULL COMMENT '-x => diminue la vitesse de l''avion de x, +x augmente la vitesse de l''avion de x, 0 => avion détruit',
|
||
|
`mail_expe` tinyint(1) NOT NULL DEFAULT '0',
|
||
|
`mail_dest` tinyint(1) NOT NULL DEFAULT '0',
|
||
|
`quand` date DEFAULT NULL,
|
||
|
`quand_fonction` text
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|