# Table structure for table `customers_basket_attributes`
#

CREATE TABLE customers_basket_attributes (
customers_basket_attributes_id int(5) NOT NULL auto_increment,
customers_id int(5) NOT NULL default '0',
products_id tinytext NOT NULL,
products_options_id int(5) NOT NULL default '0',
products_options_value_id int(5) NOT NULL default '0',
PRIMARY KEY  (customers_basket_attributes_id)
) TYPE=MyISAM;
# --------------------------------------------------------

#
