sql-install.php 281 Bytes
<?php
$sql = array();

$sql[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_.self::prefijo."movimiento` (
	`id_product` INT(10) NOT NULL,
	`id_category` INT(10) NOT NULL,
	PRIMARY KEY (`id_product`, `id_category`)
        )
        COLLATE='utf8_general_ci'
        ENGINE=MyIsam;";