Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
products_catalogue's MySQL db dump now is compatible with MySQL 5.5 (…
Browse files Browse the repository at this point in the history
…#3420403)
  • Loading branch information
fballiano committed Nov 11, 2011
1 parent 79d0a7b commit e36707b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
3.8.5
- products_catalogue's MySQL db dump now is compatible with MySQL 5.5 (#3420403)

3.8.4
- "meta viewport" tag was added to mask's HTML for a better mobile rendering
Expand Down
12 changes: 6 additions & 6 deletions applications/products_catalogue/db_dump_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CREATE TABLE `brands` (
`description` text NOT NULL,
`visible` tinyint(1) NOT NULL,
PRIMARY KEY (`brand_id`)
) TYPE=MyISAM;
) ENGINE=MyISAM;

--
-- Dumping data for table `brands`
Expand All @@ -24,7 +24,7 @@ DROP TABLE IF EXISTS `brands_brand_id_seq`;
CREATE TABLE `brands_brand_id_seq` (
`id` int(11) NOT NULL auto_increment,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=4;
) ENGINE=MyISAM AUTO_INCREMENT=4;

--
-- Dumping data for table `brands_brand_id_seq`
Expand All @@ -42,7 +42,7 @@ CREATE TABLE `categories` (
`description` text NOT NULL,
`visible` tinyint(1) NOT NULL,
PRIMARY KEY (`category_id`)
) TYPE=MyISAM;
) ENGINE=MyISAM;

--
-- Dumping data for table `categories`
Expand All @@ -58,7 +58,7 @@ DROP TABLE IF EXISTS `categories_category_id_seq`;
CREATE TABLE `categories_category_id_seq` (
`id` int(11) NOT NULL auto_increment,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=4;
) ENGINE=MyISAM AUTO_INCREMENT=4;

--
-- Dumping data for table `categories_category_id_seq`
Expand All @@ -84,7 +84,7 @@ CREATE TABLE `products` (
`visible` tinyint(1) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`product_id`)
) TYPE=MyISAM;
) ENGINE=MyISAM;

--
-- Dumping data for table `products`
Expand All @@ -100,7 +100,7 @@ DROP TABLE IF EXISTS `products_product_id_seq`;
CREATE TABLE `products_product_id_seq` (
`id` int(11) NOT NULL auto_increment,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=6;
) ENGINE=MyISAM AUTO_INCREMENT=6;

--
-- Dumping data for table `products_product_id_seq`
Expand Down

0 comments on commit e36707b

Please sign in to comment.