DTux
/
dtux__avion-poeme
Archived
1
0
Fork 0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__avion-poeme/sql/table_peripeties.sql

17 lines
561 B
SQL

-- --------------------------------------------------------
--
-- 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;