CREATE TABLE `catalog_product_flat_18` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set Id', `type_id` varchar(32) NOT NULL DEFAULT 'simple' COMMENT 'Type Id', `computer_manufacturers` int(11) DEFAULT NULL COMMENT 'Computer Manufacturers', `computer_manufacturers_value` varchar(255) DEFAULT NULL COMMENT 'Computer Manufacturers Value', `cost` decimal(12,4) DEFAULT NULL COMMENT 'Cost', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `custom_design_from` datetime DEFAULT NULL COMMENT 'Custom Design From', `custom_design_to` datetime DEFAULT NULL COMMENT 'Custom Design To', `custom_layout_update` text DEFAULT NULL COMMENT 'Custom Layout Update', `description` text DEFAULT NULL COMMENT 'Description', `gallery` varchar(255) DEFAULT NULL COMMENT 'Gallery', `gift_message_available` smallint(6) DEFAULT NULL COMMENT 'Gift Message Available', `has_options` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Has Options', `image` varchar(255) DEFAULT NULL COMMENT 'Image', `image_label` varchar(255) DEFAULT NULL COMMENT 'Image Label', `is_recurring` smallint(6) DEFAULT NULL COMMENT 'Is Recurring', `links_exist` int(11) DEFAULT NULL COMMENT 'Links Exist', `links_purchased_separately` int(11) DEFAULT NULL COMMENT 'Links Purchased Separately', `links_title` varchar(255) DEFAULT NULL COMMENT 'Links Title', `manufacturer` int(11) DEFAULT NULL COMMENT 'Manufacturer', `manufacturer_value` varchar(255) DEFAULT NULL COMMENT 'Manufacturer Value', `media_gallery` varchar(255) DEFAULT NULL COMMENT 'Media Gallery', `meta_description` varchar(255) DEFAULT NULL COMMENT 'Meta Description', `meta_keyword` text DEFAULT NULL COMMENT 'Meta Keyword', `meta_title` varchar(255) DEFAULT NULL COMMENT 'Meta Title', `minimal_price` decimal(12,4) DEFAULT NULL COMMENT 'Minimal Price', `msrp` decimal(12,4) DEFAULT NULL COMMENT 'Msrp', `msrp_display_actual_price_type` varchar(255) DEFAULT NULL COMMENT 'Msrp Display Actual Price Type', `msrp_enabled` smallint(6) DEFAULT NULL COMMENT 'Msrp Enabled', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `news_from_date` datetime DEFAULT NULL COMMENT 'News From Date', `news_to_date` datetime DEFAULT NULL COMMENT 'News To Date', `old_id` int(11) DEFAULT NULL COMMENT 'Old Id', `price` decimal(12,4) DEFAULT NULL COMMENT 'Price', `price_type` int(11) DEFAULT NULL COMMENT 'Price Type', `price_view` int(11) DEFAULT NULL COMMENT 'Price View', `recurring_profile` text DEFAULT NULL COMMENT 'Recurring Profile', `required_options` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Required Options', `samples_title` varchar(255) DEFAULT NULL COMMENT 'Samples Title', `shipment_type` int(11) DEFAULT NULL COMMENT 'Shipment Type', `short_description` text DEFAULT NULL COMMENT 'Short Description', `sku` varchar(64) DEFAULT NULL COMMENT 'Sku', `sku_type` int(11) DEFAULT NULL COMMENT 'Sku Type', `small_image` varchar(255) DEFAULT NULL COMMENT 'Small Image', `small_image_label` varchar(255) DEFAULT NULL COMMENT 'Small Image Label', `special_from_date` datetime DEFAULT NULL COMMENT 'Special From Date', `special_price` decimal(12,4) DEFAULT NULL COMMENT 'Special Price', `special_to_date` datetime DEFAULT NULL COMMENT 'Special To Date', `tax_class_id` int(10) unsigned DEFAULT NULL COMMENT 'Tax Class Id', `thumbnail` varchar(255) DEFAULT NULL COMMENT 'Thumbnail', `thumbnail_label` varchar(255) DEFAULT NULL COMMENT 'Thumbnail Label', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `url_key` varchar(255) DEFAULT NULL COMMENT 'Url Key', `url_path` varchar(255) DEFAULT NULL COMMENT 'Url Path', `visibility` smallint(5) unsigned DEFAULT NULL COMMENT 'Visibility', `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight', `weight_type` int(11) DEFAULT NULL COMMENT 'Weight Type', `components` int(11) DEFAULT NULL COMMENT 'Components', `components_value` varchar(255) DEFAULT NULL COMMENT 'Components Value', `navi_seaded` int(11) DEFAULT NULL COMMENT 'Navi Seaded', `navi_seaded_value` varchar(255) DEFAULT NULL COMMENT 'Navi Seaded Value', PRIMARY KEY (`entity_id`), KEY `IDX_CATALOG_PRODUCT_FLAT_18_TYPE_ID` (`type_id`), KEY `IDX_CATALOG_PRODUCT_FLAT_18_ATTRIBUTE_SET_ID` (`attribute_set_id`), KEY `IDX_CATALOG_PRODUCT_FLAT_18_NAME` (`name`), KEY `IDX_CATALOG_PRODUCT_FLAT_18_PRICE` (`price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Flat (Store 18)' ; CREATE TABLE `catalog_product_entity` ( `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID', `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID', `type_id` varchar(32) NOT NULL DEFAULT 'simple' COMMENT 'Type ID', `sku` varchar(64) DEFAULT NULL COMMENT 'SKU', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time', `has_options` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Has Options', `required_options` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Required Options', PRIMARY KEY (`entity_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_SKU` (`sku`) ) ENGINE=InnoDB AUTO_INCREMENT=21066 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Table';