CREATE TABLE IF NOT EXISTS `table1` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`article` varchar(50) DEFAULT NULL,
`price` decimal(12,2) DEFAULT '0.00',
`old_price` decimal(12,2) DEFAULT '0.00',
`weight` decimal(13,3) DEFAULT '0.000',
`image` varchar(255) DEFAULT NULL,
`thumb` varchar(255) DEFAULT NULL,
`vendor` int(10) unsigned DEFAULT '0',
`made_in` varchar(100) DEFAULT '',
`new` tinyint(1) unsigned DEFAULT '0',
`popular` tinyint(1) unsigned DEFAULT '0',
`favorite` tinyint(1) unsigned DEFAULT '0',
`tags` text,
`color` text,
`size` text,
`source` int(10) unsigned DEFAULT '1',
`availability` int(10) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `article` (`article`),
KEY `price` (`price`),
KEY `old_price` (`old_price`),
KEY `vendor` (`vendor`),
KEY `new` (`new`),
KEY `favorite` (`favorite`),
KEY `popular` (`popular`),
KEY `made_in` (`made_in`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=148 ;