databases/Apps/Extranet/schema/bilaninput.sql
2016-10-25 15:54:11 +02:00

19 lines
534 B
SQL
Executable File

--
-- Structure de la table `bilaninput`
--
CREATE TABLE IF NOT EXISTS `bilaninput` (
`file` varchar(255) NOT NULL COMMENT 'Nom du fichier',
`sent` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 si fichier envoyé',
`dateUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Liste des bilans à transférer pour la saisie';
--
-- Index pour les tables exportées
--
--
-- Index pour la table `bilaninput`
--
ALTER TABLE `bilaninput`
ADD PRIMARY KEY (`file`), ADD KEY `sent` (`sent`);