# Table structure for table `products_attributes`
#

CREATE TABLE products_attributes (
products_attributes_id int(5) NOT NULL auto_increment,
products_id int(5) NOT NULL default '0',
options_id int(5) NOT NULL default '0',
options_values_id int(5) NOT NULL default '0',
options_values_price decimal(8,2) NOT NULL default '0.00',
price_prefix char(1) NOT NULL default '',
PRIMARY KEY  (products_attributes_id)
) TYPE=MyISAM;
# --------------------------------------------------------

#
