1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| CREATE TABLE IF NOT EXISTS `news` (
`Ref` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`DateInsert` datetime DEFAULT NULL,
`Sujet` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`SujetNL` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`Contenu` text COLLATE utf8_unicode_ci,
`ContenuNL` text COLLATE utf8_unicode_ci,
`Path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`Actif` tinyint(1) unsigned NOT NULL DEFAULT '1',
`Ref_activite_p` smallint(5) unsigned NOT NULL,
`Ref_Categorie` smallint(5) unsigned NOT NULL,
`Ref_SousCategorie` smallint(5) unsigned NOT NULL,
`Etat` tinyint(3) unsigned NOT NULL,
`Duree` smallint(5) unsigned NOT NULL,
`Ref_Customer` mediumint(8) unsigned DEFAULT NULL,
`Ref_Account` mediumint(8) unsigned NOT NULL,
`Hit` mediumint(8) unsigned NOT NULL DEFAULT '0',
`APS` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`Ref`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=83 ; |
Partager