Hello,
the database if it's not exist inside your db
CREATE TABLE `clic_marketplace_file_informations` (
`id` int(11) NOT NULL,
`file_id` int(11) NOT NULL,
`file_name` varchar(255) DEFAULT NULL,
`date_created` date DEFAULT NULL,
`date_updated` date DEFAULT NULL,
`file_version` varchar(255) DEFAULT NULL,
`file_downloads` int(11) NOT NULL,
`file_rating` int(11) NOT NULL,
`file_prices` decimal(15,4) DEFAULT NULL,
`file_date_added` date DEFAULT NULL,
`file_url_screenshot` text DEFAULT NULL,
`file_url_download` text DEFAULT NULL,
`is_installed` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
--
-- Index pour les tables déchargées
--
--
-- Index pour la table `clic_marketplace_file_informations`
--
ALTER TABLE `clic_marketplace_file_informations`
ADD PRIMARY KEY (`id`),
ADD KEY `index_file_id` (`file_id`);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table `clic_marketplace_file_informations`
--
ALTER TABLE `clic_marketplace_file_informations`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;