Re: newbb pièces jointes de vieux posts | Titre du sujet : Re: newbb pièces jointes de vieux posts par escrime-info sur 27/04/2020 14:00:18
Citation :alain01 a écrit : La structure doit être celle construite à partir de ceci je pense :
DROP TABLE IF EXISTS `newbb_attachments`;
CREATE TABLE `newbb_attachments` (
`attach_id` INT(8) UNSIGNED NOT NULL AUTO_INCREMENT,
`post_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`name_saved` VARCHAR(255) DEFAULT NULL,
`name_disp` VARCHAR(255) DEFAULT NULL,
`mimetype` VARCHAR(255) DEFAULT NULL,
`online` TINYINT(1) UNSIGNED NOT NULL DEFAULT '1',
`attach_time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`download` INT(10) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`attach_id`),
KEY `post_id` (`post_id`)
)
ENGINE = MyISAM
DEFAULT CHARSET = utf8;
Chez moi cette table est curieusement vide !
|
|