Guest User

gtrgt

a guest
Jan 5th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 120.09 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.0.10deb1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Jan 05, 2016 at 10:54 AM
  7. -- Server version: 5.5.46-0ubuntu0.14.04.2
  8. -- PHP Version: 5.5.9-1ubuntu4.14
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8 */;
  18.  
  19. --
  20. -- Database: `totaltoys`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Table structure for table `eav_attribute`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `eav_attribute` (
  30. `attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Id',
  31. `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  32. `attribute_code` varchar(255) NOT NULL COMMENT 'Attribute Code',
  33. `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  34. `backend_model` varchar(255) DEFAULT NULL COMMENT 'Backend Model',
  35. `backend_type` varchar(8) NOT NULL DEFAULT 'static' COMMENT 'Backend Type',
  36. `backend_table` varchar(255) DEFAULT NULL COMMENT 'Backend Table',
  37. `frontend_model` varchar(255) DEFAULT NULL COMMENT 'Frontend Model',
  38. `frontend_input` varchar(50) DEFAULT NULL COMMENT 'Frontend Input',
  39. `frontend_label` varchar(255) DEFAULT NULL COMMENT 'Frontend Label',
  40. `frontend_class` varchar(255) DEFAULT NULL COMMENT 'Frontend Class',
  41. `source_model` varchar(255) DEFAULT NULL COMMENT 'Source Model',
  42. `is_required` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Required',
  43. `is_user_defined` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is User Defined',
  44. `default_value` text COMMENT 'Default Value',
  45. `is_unique` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Unique',
  46. `note` varchar(255) DEFAULT NULL COMMENT 'Note',
  47. PRIMARY KEY (`attribute_id`),
  48. UNIQUE KEY `UNQ_EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`),
  49. KEY `IDX_EAV_ATTRIBUTE_ENTITY_TYPE_ID` (`entity_type_id`)
  50. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute' AUTO_INCREMENT=1243 ;
  51.  
  52. --
  53. -- Dumping data for table `eav_attribute`
  54. --
  55.  
  56. INSERT INTO `eav_attribute` (`attribute_id`, `entity_type_id`, `attribute_code`, `attribute_model`, `backend_model`, `backend_type`, `backend_table`, `frontend_model`, `frontend_input`, `frontend_label`, `frontend_class`, `source_model`, `is_required`, `is_user_defined`, `default_value`, `is_unique`, `note`) VALUES
  57. (1, 1, 'firstname', NULL, NULL, 'varchar', NULL, NULL, 'text', 'First Name', NULL, NULL, 1, 0, NULL, 0, NULL),
  58. (2, 1, 'lastname', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Last Name', NULL, NULL, 0, 0, NULL, 0, NULL),
  59. (3, 1, 'email', NULL, NULL, 'static', NULL, NULL, 'text', 'Email', 'validate-email', NULL, 1, 0, NULL, 0, NULL),
  60. (4, 1, 'password_hash', NULL, 'customer/customer_attribute_backend_password', 'varchar', NULL, NULL, 'hidden', NULL, NULL, NULL, 0, 0, NULL, 0, NULL),
  61. (7, 1, 'default_billing', NULL, 'customer/customer_attribute_backend_billing', 'int', NULL, NULL, 'text', 'Default Billing Address', NULL, NULL, 0, 0, NULL, 0, NULL),
  62. (8, 1, 'default_shipping', NULL, 'customer/customer_attribute_backend_shipping', 'int', NULL, NULL, 'text', 'Default Shipping Address', NULL, NULL, 0, 0, NULL, 0, NULL),
  63. (9, 2, 'firstname', NULL, NULL, 'varchar', NULL, NULL, 'text', 'First Name', NULL, NULL, 1, 0, NULL, 0, NULL),
  64. (10, 2, 'lastname', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Last Name', NULL, NULL, 0, 0, NULL, 0, NULL),
  65. (11, 2, 'country_id', NULL, NULL, 'varchar', NULL, NULL, 'select', 'Country', 'countries input-text', 'customer/entity_address_attribute_source_country', 1, 0, NULL, 0, NULL),
  66. (12, 2, 'region', NULL, 'customer/entity_address_attribute_backend_region', 'varchar', NULL, NULL, 'text', 'State/Province', 'regions', NULL, 0, 0, NULL, 0, NULL),
  67. (13, 2, 'region_id', NULL, NULL, 'int', NULL, NULL, 'hidden', 'State/Province', NULL, 'customer/entity_address_attribute_source_region', 0, 0, NULL, 0, NULL),
  68. (14, 2, 'postcode', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Zip/Postal Code', NULL, NULL, 1, 0, NULL, 0, NULL),
  69. (15, 2, 'city', NULL, NULL, 'varchar', NULL, NULL, 'text', 'City', NULL, NULL, 1, 0, NULL, 0, NULL),
  70. (16, 2, 'street', NULL, 'customer/entity_address_attribute_backend_street', 'text', NULL, NULL, 'multiline', 'Street Address', NULL, NULL, 1, 0, NULL, 0, NULL),
  71. (17, 2, 'telephone', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Telephone', NULL, NULL, 1, 0, NULL, 0, NULL),
  72. (18, 2, 'fax', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Fax', NULL, NULL, 0, 0, NULL, 0, NULL),
  73. (19, 3, 'method_type', NULL, '', 'int', '', '', 'select', 'Payment Method', '', '', 1, 0, '', 0, ''),
  74. (95, 2, 'company', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Company', NULL, NULL, 0, 0, NULL, 0, NULL),
  75. (96, 10, 'name', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Name', NULL, NULL, 1, 0, NULL, 0, NULL),
  76. (97, 10, 'description', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Description', NULL, NULL, 1, 0, '', 0, NULL),
  77. (98, 10, 'sku', NULL, 'catalog/product_attribute_backend_sku', 'static', NULL, NULL, 'text', 'SKU', NULL, NULL, 1, 0, NULL, 1, NULL),
  78. (99, 10, 'price', NULL, 'catalog/product_attribute_backend_price', 'decimal', NULL, NULL, 'price', 'Price', NULL, NULL, 1, 0, NULL, 0, NULL),
  79. (100, 10, 'cost', NULL, 'catalog/product_attribute_backend_price', 'decimal', '', '', 'price', 'Cost', NULL, '', 0, 1, '', 0, ''),
  80. (101, 10, 'weight', NULL, '', 'decimal', '', '', 'weight', 'Weight', '', '', 1, 0, '', 0, ''),
  81. (102, 10, 'manufacturer', NULL, NULL, 'int', NULL, NULL, 'select', 'Manufacturer', NULL, NULL, 0, 1, '', 0, NULL),
  82. (103, 10, 'meta_title', NULL, '', 'varchar', '', '', 'text', 'Meta Title', NULL, '', 0, 0, '', 0, ''),
  83. (104, 10, 'meta_keyword', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Meta Keywords', NULL, NULL, 0, 0, NULL, 0, NULL),
  84. (105, 10, 'meta_description', NULL, '', 'varchar', '', '', 'textarea', 'Meta Description', 'validate-length maximum-length-255', '', 0, 0, '', 0, 'Maximum 255 chars'),
  85. (106, 10, 'image', NULL, NULL, 'varchar', NULL, 'catalog/product_attribute_frontend_image', 'media_image', 'Base Image', NULL, NULL, 0, 0, NULL, 0, NULL),
  86. (107, 10, 'shoe_type', NULL, NULL, 'int', NULL, NULL, 'select', 'Shoe Type', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  87. (109, 10, 'small_image', NULL, NULL, 'varchar', NULL, 'catalog/product_attribute_frontend_image', 'media_image', 'Small Image', NULL, NULL, 0, 0, NULL, 0, NULL),
  88. (110, 10, 'old_id', NULL, '', 'int', '', '', '', '', NULL, '', 0, 0, '', 0, ''),
  89. (111, 9, 'name', NULL, '', 'varchar', '', '', 'text', 'Name', NULL, '', 1, 0, '', 0, ''),
  90. (112, 9, 'description', NULL, '', 'text', '', '', 'textarea', 'Description', NULL, '', 0, 0, '', 0, ''),
  91. (113, 9, 'image', NULL, 'catalog/category_attribute_backend_image', 'varchar', '', '', 'image', 'Image', NULL, '', 0, 0, '', 0, ''),
  92. (114, 9, 'meta_title', NULL, '', 'varchar', '', '', 'text', 'Page Title', NULL, '', 0, 0, '', 0, ''),
  93. (115, 9, 'meta_keywords', NULL, '', 'text', '', '', 'textarea', 'Meta Keywords', NULL, '', 0, 0, '', 0, ''),
  94. (116, 9, 'meta_description', NULL, '', 'text', '', '', 'textarea', 'Meta Description', NULL, '', 0, 0, '', 0, ''),
  95. (117, 9, 'landing_page', NULL, '', 'int', '', '', 'select', 'CMS Block', NULL, 'catalog/category_attribute_source_page', 0, 0, '', 0, ''),
  96. (118, 9, 'display_mode', NULL, '', 'varchar', '', '', 'select', 'Display Mode', NULL, 'catalog/category_attribute_source_mode', 0, 0, '', 0, ''),
  97. (119, 9, 'is_active', NULL, '', 'int', '', '', 'select', 'Is Active', NULL, 'eav/entity_attribute_source_boolean', 1, 0, '', 0, ''),
  98. (120, 9, 'is_anchor', NULL, '', 'int', '', '', 'select', 'Is Anchor', NULL, 'eav/entity_attribute_source_boolean', 0, 0, '', 0, ''),
  99. (121, 9, 'all_children', NULL, '', 'text', '', '', '', '', NULL, '', 0, 0, '', 0, ''),
  100. (122, 9, 'path_in_store', NULL, '', 'text', '', '', '', '', NULL, '', 0, 0, '', 0, ''),
  101. (123, 9, 'children', NULL, '', 'text', '', '', '', '', NULL, '', 0, 0, '', 0, ''),
  102. (194, 4, 'grand_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  103. (195, 4, 'currency_rate', NULL, NULL, 'decimal', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  104. (196, 4, 'weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  105. (197, 4, 'tax_percent', NULL, NULL, 'decimal', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  106. (198, 4, 'subtotal', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  107. (199, 4, 'discount_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  108. (200, 4, 'tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  109. (201, 4, 'shipping_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  110. (203, 4, 'custbalance_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  111. (204, 4, 'quote_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  112. (205, 4, 'customer_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  113. (207, 4, 'currency_base_id', NULL, NULL, 'int', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  114. (208, 4, 'shipping_description', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  115. (209, 4, 'real_order_id', NULL, NULL, 'varchar', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  116. (210, 4, 'remote_ip', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  117. (211, 4, 'currency_code', NULL, NULL, 'varchar', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  118. (212, 4, 'coupon_code', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  119. (214, 4, 'shipping_method', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  120. (215, 4, 'status', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  121. (216, 4, 'shipping_address_id', NULL, 'sales_entity/order_attribute_backend_shipping', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  122. (217, 4, 'billing_address_id', NULL, 'sales_entity/order_attribute_backend_billing', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  123. (218, 6, 'region_id', NULL, '', 'int', '', '', 'text', 'State/Province', NULL, '', 1, 0, '', 0, ''),
  124. (219, 6, 'country_id', NULL, '', 'varchar', '', '', 'text', 'Country', NULL, '', 1, 0, '', 0, ''),
  125. (220, 6, 'address_id', NULL, NULL, 'int', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  126. (221, 6, 'customer_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  127. (222, 6, 'street', NULL, '', 'varchar', '', '', 'text', 'Street Address', NULL, '', 1, 0, '', 0, ''),
  128. (223, 6, 'email', NULL, '', 'varchar', '', '', 'text', 'Email', NULL, '', 1, 0, '', 0, ''),
  129. (224, 6, 'firstname', NULL, '', 'varchar', '', '', 'text', 'First Name', NULL, '', 1, 0, '', 0, ''),
  130. (225, 6, 'lastname', NULL, '', 'varchar', '', '', 'text', 'Last Name', NULL, '', 1, 0, '', 0, ''),
  131. (226, 6, 'company', NULL, '', 'varchar', '', '', 'text', 'Company', NULL, '', 1, 0, '', 0, ''),
  132. (227, 6, 'city', NULL, '', 'varchar', '', '', 'text', 'City', NULL, '', 1, 0, '', 0, ''),
  133. (228, 6, 'region', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  134. (229, 6, 'postcode', NULL, '', 'varchar', '', '', 'text', 'Zip/Postal Code', NULL, '', 1, 0, '', 0, ''),
  135. (230, 6, 'telephone', NULL, '', 'varchar', '', '', 'text', 'Telephone', NULL, '', 1, 0, '', 0, ''),
  136. (231, 6, 'fax', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  137. (232, 6, 'tax_id', NULL, NULL, 'varchar', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  138. (233, 6, 'address_type', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  139. (234, 7, 'weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  140. (235, 7, 'qty', NULL, NULL, 'decimal', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  141. (236, 7, 'qty_backordered', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  142. (237, 7, 'qty_canceled', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  143. (238, 7, 'qty_shipped', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  144. (239, 7, 'qty_returned', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  145. (240, 7, 'price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  146. (241, 7, 'tier_price', NULL, NULL, 'decimal', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  147. (242, 7, 'base_cost', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  148. (243, 7, 'discount_percent', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  149. (244, 7, 'discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  150. (245, 7, 'tax_percent', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  151. (246, 7, 'tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  152. (247, 7, 'row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  153. (248, 7, 'row_weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  154. (249, 7, 'product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  155. (250, 7, 'image', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  156. (251, 7, 'name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  157. (252, 7, 'model', NULL, NULL, 'varchar', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  158. (253, 8, 'cc_exp_month', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  159. (254, 8, 'cc_exp_year', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  160. (255, 8, 'cc_raw_request', NULL, NULL, 'text', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  161. (256, 8, 'cc_raw_response', NULL, NULL, 'text', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  162. (257, 8, 'method', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  163. (258, 8, 'po_number', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  164. (259, 8, 'cc_type', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  165. (260, 8, 'cc_number_enc', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  166. (261, 8, 'cc_last4', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  167. (262, 8, 'cc_owner', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  168. (263, 8, 'cc_trans_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  169. (264, 8, 'cc_approval', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  170. (265, 8, 'cc_avs_status', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  171. (266, 8, 'cc_cid_status', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  172. (267, 5, 'status', NULL, NULL, 'varchar', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, 0, ''),
  173. (268, 5, 'comments', NULL, NULL, 'text', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, ''),
  174. (270, 10, 'tier_price', NULL, 'catalog/product_attribute_backend_tierprice', 'decimal', '', '', 'text', 'Tier Price', '', '', 0, 0, '', 0, ''),
  175. (271, 10, 'gallery', NULL, '', 'varchar', '', '', 'gallery', 'Image Gallery', NULL, '', 0, 0, '', 0, ''),
  176. (272, 10, 'color', NULL, NULL, 'int', NULL, NULL, 'select', 'Color', NULL, NULL, 0, 1, '', 0, NULL),
  177. (273, 10, 'status', NULL, '', 'int', '', '', 'select', 'Status', '', 'catalog/product_status', 1, 0, '', 0, ''),
  178. (274, 10, 'tax_class_id', NULL, '', 'int', '', '', 'select', 'Tax Class', '', 'tax/class_source_product', 1, 0, '', 0, ''),
  179. (275, 11, 'entity_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  180. (276, 11, 'is_active', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  181. (277, 11, 'customer_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  182. (278, 11, 'remote_ip', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  183. (279, 11, 'checkout_method', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  184. (280, 11, 'password_hash', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  185. (281, 11, 'quote_status_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  186. (282, 11, 'billing_address_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  187. (283, 11, 'converted_at', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  188. (284, 11, 'coupon_code', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  189. (285, 11, 'giftcert_code', NULL, '', 'varchar', '', '', 'text', 'Gift certificate', NULL, '', 1, 0, '', 0, ''),
  190. (286, 11, 'custbalance_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  191. (287, 11, 'base_currency_code', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  192. (288, 11, 'store_currency_code', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  193. (289, 11, 'quote_currency_code', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  194. (290, 11, 'store_to_base_rate', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  195. (291, 11, 'store_to_quote_rate', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  196. (292, 11, 'grand_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  197. (293, 11, 'orig_order_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  198. (294, 11, 'applied_rule_ids', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  199. (295, 11, 'is_virtual', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  200. (296, 11, 'is_multi_shipping', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  201. (297, 11, 'is_multi_payment', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  202. (298, 12, 'entity_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  203. (299, 12, 'parent_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  204. (300, 12, 'address_type', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  205. (301, 12, 'customer_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  206. (302, 12, 'customer_address_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  207. (303, 12, 'email', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  208. (304, 12, 'firstname', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  209. (305, 12, 'lastname', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  210. (306, 12, 'company', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  211. (307, 12, 'street', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  212. (308, 12, 'city', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  213. (309, 12, 'region', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  214. (310, 12, 'region_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  215. (311, 12, 'postcode', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  216. (312, 12, 'country_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  217. (313, 12, 'telephone', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  218. (314, 12, 'fax', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  219. (315, 12, 'same_as_billing', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  220. (316, 12, 'weight', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  221. (317, 12, 'shipping_method', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  222. (318, 12, 'shipping_description', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  223. (319, 12, 'subtotal', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  224. (320, 12, 'tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  225. (321, 12, 'shipping_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  226. (322, 12, 'discount_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  227. (323, 12, 'custbalance_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  228. (324, 12, 'grand_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  229. (325, 12, 'customer_notes', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  230. (326, 13, 'parent_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  231. (327, 13, 'code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  232. (328, 13, 'carrier', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  233. (329, 13, 'carrier_title', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  234. (330, 13, 'method', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  235. (331, 13, 'method_description', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  236. (332, 13, 'price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  237. (333, 13, 'error_message', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  238. (334, 14, 'parent_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  239. (335, 14, 'quote_item_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  240. (336, 14, 'qty', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  241. (337, 14, 'discount_percent', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  242. (338, 14, 'discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  243. (339, 14, 'tax_percent', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  244. (340, 14, 'tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  245. (341, 14, 'row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  246. (342, 14, 'row_weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  247. (343, 15, 'parent_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  248. (344, 15, 'product_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  249. (345, 15, 'parent_product_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  250. (346, 15, 'sku', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  251. (347, 15, 'image', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  252. (348, 15, 'name', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  253. (349, 15, 'description', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  254. (350, 15, 'weight', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  255. (351, 15, 'qty', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  256. (352, 15, 'price', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  257. (353, 15, 'discount_percent', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  258. (354, 15, 'discount_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  259. (355, 15, 'tax_percent', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  260. (356, 15, 'tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  261. (357, 15, 'row_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  262. (358, 15, 'row_weight', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  263. (359, 16, 'parent_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  264. (360, 16, 'customer_payment_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  265. (361, 16, 'method', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  266. (362, 16, 'po_number', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  267. (363, 16, 'cc_type', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  268. (364, 16, 'cc_number_enc', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  269. (365, 16, 'cc_last4', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  270. (366, 16, 'cc_owner', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  271. (367, 16, 'cc_exp_month', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  272. (368, 16, 'cc_exp_year', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  273. (369, 16, 'cc_cid_enc', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  274. (370, 4, 'entity_id', NULL, 'sales_entity/order_attribute_backend_parent', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  275. (372, 4, 'quote_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  276. (373, 4, 'base_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  277. (374, 4, 'store_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  278. (375, 4, 'order_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  279. (376, 4, 'store_to_base_rate', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  280. (377, 4, 'store_to_order_rate', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  281. (378, 4, 'is_virtual', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  282. (379, 4, 'is_multi_payment', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  283. (380, 4, 'total_paid', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  284. (381, 4, 'total_due', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  285. (383, 4, 'total_qty_ordered', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  286. (384, 6, 'parent_id', NULL, 'sales_entity/order_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  287. (385, 6, 'quote_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  288. (386, 6, 'customer_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  289. (387, 7, 'parent_id', NULL, 'sales_entity/order_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  290. (388, 7, 'quote_item_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  291. (389, 7, 'sku', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  292. (390, 7, 'description', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  293. (391, 7, 'qty_ordered', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  294. (392, 8, 'parent_id', NULL, 'sales_entity/order_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  295. (393, 8, 'quote_payment_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  296. (394, 8, 'customer_payment_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  297. (395, 8, 'amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  298. (396, 8, 'cc_status', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  299. (397, 8, 'cc_status_description', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  300. (398, 8, 'cc_debug_request_body', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  301. (399, 8, 'cc_debug_response_body', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  302. (400, 8, 'cc_debug_response_serialized', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  303. (401, 8, 'anet_trans_method', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  304. (402, 8, 'echeck_routing_number', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  305. (403, 8, 'echeck_bank_name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  306. (404, 8, 'echeck_account_type', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  307. (405, 8, 'echeck_account_name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  308. (406, 8, 'echeck_type', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  309. (407, 17, 'parent_id', NULL, 'sales_entity/order_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  310. (410, 17, 'is_customer_notified', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  311. (411, 18, 'entity_id', NULL, 'sales_entity/order_invoice_attribute_backend_parent', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  312. (412, 18, 'invoice_type', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  313. (413, 18, 'customer_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  314. (414, 18, 'order_id', NULL, 'sales_entity/order_invoice_attribute_backend_order', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  315. (415, 18, 'real_order_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  316. (416, 18, 'invoice_status_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  317. (417, 18, 'billing_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  318. (418, 18, 'shipping_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  319. (419, 18, 'base_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  320. (420, 18, 'store_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  321. (421, 18, 'order_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  322. (422, 18, 'store_to_base_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  323. (423, 18, 'store_to_order_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  324. (424, 18, 'is_virtual', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  325. (425, 18, 'subtotal', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  326. (426, 18, 'tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  327. (427, 18, 'shipping_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  328. (428, 18, 'grand_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  329. (429, 18, 'total_paid', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  330. (430, 18, 'total_due', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  331. (431, 18, 'total_qty', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  332. (432, 19, 'parent_id', NULL, 'sales_entity/invoice_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  333. (433, 19, 'order_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  334. (434, 19, 'address_type', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  335. (435, 19, 'customer_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  336. (436, 19, 'customer_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  337. (437, 19, 'email', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  338. (438, 19, 'firstname', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  339. (439, 19, 'lastname', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  340. (440, 19, 'company', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  341. (441, 19, 'street', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  342. (442, 19, 'city', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  343. (443, 19, 'region', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  344. (444, 19, 'region_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  345. (445, 19, 'postcode', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  346. (446, 19, 'country_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  347. (447, 19, 'telephone', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  348. (448, 19, 'fax', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  349. (449, 20, 'parent_id', NULL, 'sales_entity/order_invoice_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  350. (450, 20, 'order_item_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  351. (451, 20, 'product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  352. (452, 20, 'name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  353. (453, 20, 'description', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  354. (454, 20, 'sku', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  355. (455, 20, 'qty', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  356. (456, 20, 'price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  357. (457, 20, 'base_cost', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  358. (458, 20, 'row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  359. (459, 20, 'shipment_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  360. (460, 21, 'parent_id', NULL, 'sales_entity/invoice_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  361. (461, 21, 'order_payment_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  362. (462, 21, 'amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  363. (463, 21, 'method', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  364. (464, 21, 'cc_trans_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  365. (465, 21, 'cc_approval', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  366. (466, 21, 'cc_debug_request', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  367. (467, 21, 'cc_debug_response', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  368. (468, 22, 'parent_id', NULL, 'sales_entity/invoice_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  369. (469, 22, 'order_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  370. (470, 22, 'shipping_method', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  371. (471, 22, 'tracking_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  372. (472, 22, 'shipment_status_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  373. (473, 11, 'customer_tax_class_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  374. (474, 15, 'tax_class_id', NULL, '', 'int', '', '', 'select', 'Tax Class', NULL, 'tax/class_source_product', 0, 0, '', 0, ''),
  375. (475, 14, 'tax_class_id', NULL, '', 'int', '', '', 'select', 'Tax Class', NULL, 'tax/class_source_product', 0, 0, '', 0, ''),
  376. (476, 10, 'shape', NULL, NULL, 'text', NULL, NULL, 'text', 'shape', '', NULL, 0, 1, '', 0, ''),
  377. (477, 1, 'created_in', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Created From', NULL, NULL, 0, 0, NULL, 0, NULL),
  378. (478, 1, 'store_id', NULL, 'customer/customer_attribute_backend_store', 'static', NULL, NULL, 'select', 'Create In', NULL, 'customer/customer_attribute_source_store', 1, 0, NULL, 0, NULL),
  379. (479, 9, 'url_key', NULL, 'catalog/category_attribute_backend_urlkey', 'varchar', '', '', 'text', 'URL Key', NULL, '', 0, 0, '', 0, ''),
  380. (481, 10, 'url_key', NULL, 'catalog/product_attribute_backend_urlkey', 'varchar', '', '', 'text', 'URL Key', NULL, '', 0, 0, '', 0, 'Leave blank to use Product URL Key Template'),
  381. (482, 15, 'applied_rule_ids', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  382. (483, 7, 'applied_rule_ids', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  383. (488, 12, 'free_shipping', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  384. (489, 14, 'free_shipping', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  385. (490, 15, 'free_shipping', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  386. (491, 4, 'applied_rule_ids', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  387. (492, 10, 'in_depth', NULL, NULL, 'text', NULL, NULL, 'textarea', 'In Depth', NULL, NULL, 1, 1, NULL, 0, NULL),
  388. (493, 10, 'thumbnail', NULL, NULL, 'varchar', NULL, 'catalog/product_attribute_frontend_image', 'media_image', 'Thumbnail', NULL, NULL, 0, 0, NULL, 0, NULL),
  389. (495, 10, 'model', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Model', NULL, NULL, 0, 1, NULL, 0, NULL),
  390. (496, 10, 'activation_information', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Activation Information', '', NULL, 0, 1, NULL, 0, ''),
  391. (497, 10, 'processor', NULL, NULL, 'text', NULL, NULL, 'text', 'Processor', '', NULL, 0, 1, NULL, 0, ''),
  392. (498, 10, 'memory', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Memory', NULL, NULL, 0, 1, NULL, 0, NULL),
  393. (499, 10, 'hardrive', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Hardrive', NULL, NULL, 0, 1, NULL, 0, NULL),
  394. (500, 10, 'screensize', NULL, NULL, 'text', NULL, NULL, 'text', 'Screensize', '', NULL, 0, 1, NULL, 0, ''),
  395. (501, 10, 'gender', NULL, NULL, 'int', NULL, NULL, 'select', 'Gender', NULL, 'eav/entity_attribute_source_table', 1, 1, '', 0, NULL),
  396. (502, 10, 'shoe_size', NULL, NULL, 'int', NULL, NULL, 'select', 'Shoe Size', '', 'eav/entity_attribute_source_table', 1, 1, NULL, 0, ''),
  397. (503, 10, 'minimal_price', NULL, '', 'decimal', '', '', 'price', 'Minimal Price', NULL, '', 0, 0, '', 0, ''),
  398. (504, 12, 'collect_shipping_rates', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  399. (505, 15, 'super_product_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  400. (506, 10, 'short_description', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Short Description', NULL, NULL, 1, 0, NULL, 0, NULL),
  401. (507, 10, 'country_orgin', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Country of Origin', NULL, NULL, 0, 1, NULL, 0, NULL),
  402. (508, 10, 'room', NULL, NULL, 'int', NULL, NULL, 'select', 'Room', '', 'eav/entity_attribute_source_table', 0, 1, NULL, 0, ''),
  403. (509, 10, 'finish', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Finish', NULL, NULL, 0, 1, NULL, 0, NULL),
  404. (510, 10, 'computer_manufacturers', NULL, NULL, 'int', NULL, NULL, 'select', 'Brand', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  405. (513, 10, 'megapixels', NULL, NULL, 'int', NULL, NULL, 'select', 'Megapixels', NULL, NULL, 0, 1, '', 0, NULL),
  406. (514, 9, 'page_layout', NULL, '', 'varchar', '', '', 'select', 'Page Layout', NULL, 'catalog/category_attribute_source_layout', 0, 0, '', 0, ''),
  407. (515, 14, 'product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  408. (516, 14, 'super_product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  409. (517, 14, 'parent_product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  410. (518, 14, 'sku', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  411. (519, 14, 'image', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  412. (520, 14, 'name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  413. (521, 14, 'description', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  414. (522, 14, 'weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  415. (523, 14, 'price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  416. (524, 14, 'applied_rule_ids', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  417. (525, 10, 'shirt_size', NULL, NULL, 'int', NULL, NULL, 'select', 'Shirt Size', '', 'eav/entity_attribute_source_table', 1, 1, NULL, 0, ''),
  418. (526, 10, 'visibility', NULL, '', 'int', '', '', 'select', 'Visibility', '', 'catalog/product_visibility', 1, 0, '4', 0, ''),
  419. (527, 16, 'paypal_payer_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  420. (528, 16, 'paypal_payer_status', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  421. (529, 16, 'paypal_correlation_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  422. (530, 9, 'custom_layout_update', NULL, 'catalog/attribute_backend_customlayoutupdate', 'text', '', '', 'textarea', 'Custom Layout Update', NULL, '', 0, 0, '', 0, ''),
  423. (531, 10, 'custom_layout_update', NULL, 'catalog/attribute_backend_customlayoutupdate', 'text', '', '', 'textarea', 'Custom Layout Update', NULL, '', 0, 0, '', 0, ''),
  424. (532, 1, 'group_id', NULL, NULL, 'static', NULL, NULL, 'select', 'Customer Group', NULL, 'customer/customer_attribute_source_group', 1, 0, NULL, 0, NULL),
  425. (533, 9, 'url_path', NULL, '', 'varchar', '', '', '', '', NULL, '', 0, 0, '', 0, ''),
  426. (534, 11, 'gift_message_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  427. (535, 12, 'gift_message_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  428. (536, 15, 'gift_message_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  429. (537, 4, 'gift_message_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  430. (538, 6, 'gift_message_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  431. (539, 7, 'gift_message_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  432. (541, 14, 'gift_message_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  433. (542, 7, 'gift_message_aviable', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  434. (543, 11, 'customer_group_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  435. (544, 11, 'customer_email', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  436. (545, 11, 'customer_note', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  437. (546, 11, 'customer_note_notify', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  438. (547, 4, 'customer_group_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  439. (548, 4, 'customer_email', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  440. (549, 4, 'customer_note', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  441. (550, 4, 'customer_note_notify', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  442. (551, 15, 'custom_price', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  443. (552, 14, 'custom_price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  444. (553, 4, 'state', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  445. (554, 4, 'relation_parent_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  446. (555, 4, 'relation_parent_real_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  447. (556, 4, 'relation_child_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  448. (557, 4, 'relation_child_real_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  449. (558, 4, 'tracking_numbers', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  450. (559, 17, 'status', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  451. (560, 17, 'comment', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  452. (561, 7, 'gift_message_available', NULL, '', 'int', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  453. (562, 10, 'gift_message_available', NULL, 'catalog/product_attribute_backend_boolean', 'varchar', '', '', 'select', 'Allow Gift Message', NULL, 'eav/entity_attribute_source_boolean', 0, 0, '', 0, ''),
  454. (563, 9, 'custom_design', NULL, '', 'varchar', '', '', 'select', 'Custom Design', NULL, 'core/design_source_design', 0, 0, '', 0, ''),
  455. (565, 9, 'custom_design_from', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', '', '', 'date', 'Active From', NULL, '', 0, 0, '', 0, ''),
  456. (566, 9, 'custom_design_to', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', '', '', 'date', 'Active To', NULL, '', 0, 0, '', 0, ''),
  457. (567, 10, 'special_price', NULL, 'catalog/product_attribute_backend_price', 'decimal', NULL, NULL, 'price', 'Special Price', NULL, NULL, 0, 0, NULL, 0, NULL),
  458. (568, 10, 'special_from_date', NULL, 'catalog/product_attribute_backend_startdate_specialprice', 'datetime', '', '', 'date', 'Special Price From Date', NULL, '', 0, 0, '', 0, ''),
  459. (569, 10, 'special_to_date', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', '', '', 'date', 'Special Price To Date', NULL, '', 0, 0, '', 0, ''),
  460. (570, 10, 'url_path', NULL, '', 'varchar', '', '', '', '', NULL, '', 0, 0, '', 0, ''),
  461. (571, 10, 'custom_design', NULL, '', 'varchar', '', '', 'select', 'Custom Design', NULL, 'core/design_source_design', 0, 0, '', 0, ''),
  462. (572, 10, 'custom_design_from', NULL, 'catalog/product_attribute_backend_startdate', 'datetime', '', '', 'date', 'Active From', NULL, '', 0, 0, '', 0, ''),
  463. (573, 10, 'custom_design_to', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', '', '', 'date', 'Active To', NULL, '', 0, 0, '', 0, ''),
  464. (574, 11, 'customer_firstname', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  465. (575, 11, 'customer_lastname', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  466. (576, 12, 'subtotal_with_discount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  467. (577, 14, 'no_discount', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  468. (578, 14, 'row_total_with_discount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  469. (579, 15, 'no_discount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  470. (580, 15, 'row_total_with_discount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  471. (581, 16, 'additional_data', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  472. (582, 4, 'is_hold', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  473. (583, 4, 'total_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  474. (584, 4, 'customer_firstname', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  475. (585, 4, 'customer_lastname', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  476. (586, 7, 'super_product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  477. (587, 7, 'parent_product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  478. (588, 7, 'qty_invoiced', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  479. (589, 7, 'qty_refunded', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  480. (590, 7, 'original_price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  481. (591, 7, 'discount_invoiced', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  482. (592, 7, 'tax_invoiced', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  483. (593, 7, 'row_invoiced', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  484. (594, 7, 'invoiced_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  485. (595, 7, 'amount_refunded', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  486. (596, 8, 'additional_data', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  487. (597, 8, 'amount_ordered', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  488. (598, 8, 'amount_authorized', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  489. (599, 8, 'amount_paid', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  490. (600, 8, 'amount_canceled', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  491. (601, 8, 'amount_refunded', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  492. (602, 8, 'shipping_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  493. (603, 8, 'shipping_captured', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  494. (604, 8, 'shipping_refunded', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  495. (605, 18, 'state', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  496. (606, 18, 'transaction_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  497. (607, 18, 'discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  498. (608, 18, 'can_void_flag', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  499. (609, 20, 'discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  500. (610, 20, 'tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  501. (611, 23, 'parent_id', NULL, 'sales_entity/order_invoice_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  502. (612, 23, 'comment', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  503. (613, 23, 'is_customer_notified', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  504. (614, 24, 'entity_id', NULL, 'sales_entity/order_shipment_attribute_backend_parent', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  505. (615, 24, 'customer_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  506. (616, 24, 'order_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  507. (617, 24, 'shipment_status', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  508. (618, 24, 'billing_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  509. (619, 24, 'shipping_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  510. (620, 24, 'total_qty', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  511. (621, 24, 'total_weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  512. (622, 25, 'parent_id', NULL, 'sales_entity/order_shipment_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  513. (623, 25, 'order_item_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  514. (624, 25, 'product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  515. (625, 25, 'name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  516. (626, 25, 'description', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  517. (627, 25, 'sku', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  518. (628, 25, 'qty', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  519. (629, 25, 'price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  520. (630, 25, 'weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  521. (631, 25, 'row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  522. (632, 26, 'parent_id', NULL, 'sales_entity/order_shipment_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  523. (633, 26, 'comment', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  524. (634, 26, 'is_customer_notified', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  525. (635, 27, 'parent_id', NULL, 'sales_entity/order_shipment_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  526. (636, 27, 'order_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  527. (637, 27, 'number', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  528. (638, 27, 'carrier_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  529. (639, 27, 'title', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  530. (640, 27, 'description', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  531. (641, 27, 'qty', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  532. (642, 27, 'weight', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  533. (643, 28, 'entity_id', NULL, 'sales_entity/order_creditmemo_attribute_backend_parent', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  534. (644, 28, 'state', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  535. (645, 28, 'transaction_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  536. (646, 28, 'order_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  537. (647, 28, 'creditmemo_status', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  538. (648, 28, 'billing_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  539. (649, 28, 'shipping_address_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  540. (650, 28, 'base_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  541. (651, 28, 'store_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  542. (652, 28, 'order_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  543. (653, 28, 'store_to_base_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  544. (654, 28, 'store_to_order_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  545. (655, 28, 'subtotal', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  546. (656, 28, 'discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  547. (657, 28, 'tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  548. (658, 28, 'shipping_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  549. (659, 28, 'adjustment', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  550. (660, 28, 'adjustment_positive', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  551. (661, 28, 'adjustment_negative', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, '');
  552. INSERT INTO `eav_attribute` (`attribute_id`, `entity_type_id`, `attribute_code`, `attribute_model`, `backend_model`, `backend_type`, `backend_table`, `frontend_model`, `frontend_input`, `frontend_label`, `frontend_class`, `source_model`, `is_required`, `is_user_defined`, `default_value`, `is_unique`, `note`) VALUES
  553. (662, 28, 'grand_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  554. (663, 29, 'parent_id', NULL, 'sales_entity/order_creditmemo_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  555. (664, 29, 'order_item_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  556. (665, 29, 'product_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  557. (666, 29, 'name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  558. (667, 29, 'description', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  559. (668, 29, 'sku', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  560. (669, 29, 'qty', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  561. (670, 29, 'price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  562. (671, 29, 'base_cost', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  563. (672, 29, 'discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  564. (673, 29, 'tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  565. (674, 29, 'row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  566. (675, 30, 'parent_id', NULL, 'sales_entity/order_creditmemo_attribute_backend_child', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  567. (676, 30, 'comment', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  568. (677, 30, 'is_customer_notified', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  569. (678, 11, 'store_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  570. (679, 11, 'customer_is_guest', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  571. (680, 14, 'is_qty_decimal', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  572. (681, 15, 'is_qty_decimal', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  573. (682, 16, 'cc_ss_issue', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  574. (683, 16, 'cc_ss_start_month', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  575. (684, 16, 'cc_ss_start_year', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  576. (685, 4, 'store_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  577. (686, 4, 'hold_before_status', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  578. (687, 4, 'hold_before_state', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  579. (688, 4, 'ext_order_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  580. (689, 4, 'ext_customer_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  581. (690, 4, 'total_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  582. (691, 4, 'adjustment_positive', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  583. (692, 4, 'adjustment_negative', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  584. (693, 4, 'customer_is_guest', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  585. (694, 7, 'is_qty_decimal', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  586. (695, 8, 'cc_ss_issue', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  587. (696, 8, 'cc_ss_start_month', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  588. (697, 8, 'cc_ss_start_year', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  589. (698, 18, 'is_used_for_refund', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  590. (699, 28, 'invoice_id', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  591. (700, 1, 'website_id', NULL, 'customer/customer_attribute_backend_website', 'static', NULL, NULL, 'select', 'Associate to Website', NULL, 'customer/customer_attribute_source_website', 1, 0, NULL, 0, NULL),
  592. (701, 9, 'path', NULL, '', 'static', '', '', '', 'Path', NULL, '', 0, 0, '', 0, ''),
  593. (702, 9, 'position', NULL, '', 'static', '', '', '', 'Position', NULL, '', 0, 0, '', 0, ''),
  594. (703, 10, 'media_gallery', NULL, 'catalog/product_attribute_backend_media', 'varchar', '', '', 'gallery', 'Media Gallery', NULL, '', 1, 0, '', 0, ''),
  595. (704, 10, 'news_from_date', NULL, 'catalog/product_attribute_backend_startdate', 'datetime', '', '', 'date', 'Set Product as New from Date', NULL, '', 0, 0, '', 0, ''),
  596. (705, 10, 'news_to_date', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', '', '', 'date', 'Set Product as New to Date', NULL, '', 0, 0, '', 0, ''),
  597. (707, 11, 'base_grand_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  598. (708, 12, 'base_subtotal', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  599. (709, 12, 'base_subtotal_with_discount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  600. (710, 12, 'base_tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  601. (711, 12, 'base_shipping_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  602. (712, 12, 'base_discount_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  603. (713, 12, 'base_custbalance_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  604. (714, 12, 'base_grand_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  605. (715, 14, 'base_price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  606. (716, 14, 'base_discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  607. (717, 14, 'base_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  608. (718, 14, 'base_row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  609. (719, 14, 'additional_data', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  610. (720, 15, 'base_price', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  611. (721, 15, 'base_discount_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  612. (722, 15, 'base_tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  613. (723, 15, 'base_row_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  614. (724, 15, 'additional_data', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  615. (725, 4, 'store_name', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  616. (726, 4, 'total_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  617. (727, 4, 'total_online_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  618. (728, 4, 'total_offline_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  619. (729, 4, 'base_tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  620. (730, 4, 'base_shipping_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  621. (731, 4, 'base_discount_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  622. (733, 4, 'base_custbalance_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  623. (734, 4, 'base_subtotal', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  624. (735, 4, 'base_grand_total', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  625. (736, 4, 'base_total_paid', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  626. (737, 4, 'base_total_due', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  627. (738, 4, 'base_total_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  628. (739, 4, 'base_total_qty_ordered', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  629. (740, 4, 'base_total_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  630. (741, 4, 'base_total_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  631. (742, 4, 'base_total_online_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  632. (743, 4, 'base_total_offline_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  633. (744, 4, 'base_adjustment_positive', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  634. (745, 4, 'base_adjustment_negative', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  635. (746, 4, 'email_sent', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  636. (747, 7, 'base_price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  637. (748, 7, 'base_original_price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  638. (749, 7, 'base_discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  639. (750, 7, 'base_discount_invoiced', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  640. (751, 7, 'base_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  641. (752, 7, 'base_tax_invoiced', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  642. (753, 7, 'base_row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  643. (754, 7, 'base_row_invoiced', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  644. (755, 7, 'base_invoiced_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  645. (756, 7, 'base_amount_refunded', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  646. (757, 7, 'additional_data', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  647. (758, 8, 'base_amount_ordered', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  648. (759, 8, 'base_amount_authorized', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  649. (760, 8, 'base_amount_paid', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  650. (761, 8, 'base_amount_canceled', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  651. (762, 8, 'base_amount_refunded', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  652. (763, 8, 'base_shipping_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  653. (764, 8, 'base_shipping_captured', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  654. (765, 8, 'base_shipping_refunded', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  655. (766, 18, 'base_subtotal', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  656. (767, 18, 'base_discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  657. (768, 18, 'base_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  658. (769, 18, 'base_shipping_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  659. (770, 18, 'base_grand_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  660. (771, 18, 'email_sent', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  661. (772, 20, 'base_price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  662. (773, 20, 'base_discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  663. (774, 20, 'base_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  664. (775, 20, 'base_row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  665. (776, 20, 'additional_data', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  666. (777, 24, 'email_sent', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  667. (778, 25, 'additional_data', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  668. (779, 28, 'base_subtotal', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  669. (780, 28, 'base_discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  670. (781, 28, 'base_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  671. (782, 28, 'base_shipping_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  672. (783, 28, 'base_adjustment', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  673. (784, 28, 'base_adjustment_positive', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  674. (785, 28, 'base_adjustment_negative', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  675. (786, 28, 'base_grand_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  676. (787, 28, 'email_sent', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  677. (788, 29, 'base_price', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  678. (789, 29, 'base_discount_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  679. (790, 29, 'base_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  680. (791, 29, 'base_row_total', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  681. (792, 29, 'additional_data', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  682. (793, 11, 'items_count', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  683. (794, 11, 'items_qty', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  684. (795, 4, 'edit_increment', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  685. (796, 4, 'original_increment_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  686. (797, 4, 'subtotal_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  687. (798, 4, 'subtotal_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  688. (799, 4, 'tax_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  689. (800, 4, 'tax_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  690. (801, 4, 'shipping_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  691. (802, 4, 'shipping_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  692. (803, 4, 'base_subtotal_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  693. (804, 4, 'base_subtotal_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  694. (805, 4, 'base_tax_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  695. (806, 4, 'base_tax_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  696. (807, 4, 'base_shipping_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  697. (808, 4, 'base_shipping_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  698. (809, 4, 'subtotal_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  699. (810, 4, 'tax_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  700. (811, 4, 'shipping_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  701. (812, 4, 'base_subtotal_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  702. (813, 4, 'base_tax_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  703. (814, 4, 'base_shipping_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  704. (815, 12, 'save_in_address_book', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  705. (816, 11, 'reserved_order_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  706. (817, 8, 'last_trans_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  707. (818, 12, 'shipping_tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  708. (819, 12, 'base_shipping_tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  709. (820, 4, 'shipping_tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  710. (821, 4, 'base_shipping_tax_amount', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  711. (822, 18, 'shipping_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  712. (823, 18, 'base_shipping_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  713. (824, 28, 'shipping_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  714. (825, 28, 'base_shipping_tax_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  715. (826, 1, 'prefix', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Prefix', NULL, NULL, 0, 0, NULL, 0, NULL),
  716. (827, 1, 'middlename', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Middle Name/Initial', NULL, NULL, 0, 0, NULL, 0, NULL),
  717. (828, 1, 'suffix', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Suffix', NULL, NULL, 0, 0, NULL, 0, NULL),
  718. (829, 1, 'dob', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', NULL, 'eav/entity_attribute_frontend_datetime', 'date', 'Date Of Birth', NULL, NULL, 0, 0, NULL, 0, NULL),
  719. (830, 1, 'taxvat', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Tax/VAT number', NULL, NULL, 0, 0, NULL, 0, NULL),
  720. (831, 1, 'confirmation', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Is confirmed', NULL, NULL, 0, 0, NULL, 0, NULL),
  721. (832, 2, 'prefix', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Prefix', NULL, NULL, 0, 0, NULL, 0, NULL),
  722. (833, 2, 'middlename', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Middle Name/Initial', NULL, NULL, 0, 0, NULL, 0, NULL),
  723. (834, 2, 'suffix', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Suffix', NULL, NULL, 0, 0, NULL, 0, NULL),
  724. (835, 9, 'level', NULL, '', 'static', '', '', '', 'Level', NULL, '', 0, 0, '', 0, ''),
  725. (836, 10, 'options_container', NULL, '', 'varchar', '', '', 'select', 'Display Product Options In', NULL, 'catalog/entity_product_attribute_design_options_container', 0, 0, 'container2', 0, ''),
  726. (837, 10, 'required_options', NULL, '', 'static', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  727. (838, 10, 'has_options', NULL, '', 'static', '', '', 'text', '', NULL, '', 0, 0, '', 0, ''),
  728. (839, 4, 'customer_prefix', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  729. (840, 4, 'customer_middlename', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  730. (841, 4, 'customer_suffix', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  731. (842, 6, 'prefix', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  732. (843, 6, 'middlename', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  733. (844, 6, 'suffix', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  734. (845, 11, 'customer_prefix', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  735. (846, 11, 'customer_middlename', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  736. (847, 11, 'customer_suffix', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  737. (848, 12, 'prefix', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  738. (849, 12, 'middlename', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  739. (850, 12, 'suffix', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  740. (851, 11, 'customer_dob', NULL, 'eav/entity_attribute_backend_datetime', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  741. (852, 4, 'customer_dob', NULL, '', 'datetime', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  742. (853, 7, 'is_virtual', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  743. (854, 7, 'product_type', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  744. (855, 18, 'store_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  745. (856, 28, 'store_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  746. (857, 24, 'store_id', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  747. (858, 4, 'customer_taxvat', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  748. (859, 10, 'price_type', NULL, '', 'int', '', '', '', '', NULL, '', 1, 0, '', 0, ''),
  749. (860, 10, 'sku_type', NULL, '', 'int', '', '', '', '', NULL, '', 1, 0, '', 0, ''),
  750. (861, 10, 'weight_type', NULL, '', 'int', '', '', '', '', NULL, '', 1, 0, '', 0, ''),
  751. (862, 10, 'price_view', NULL, '', 'int', '', '', 'select', 'Price View', NULL, 'bundle/product_attribute_source_price_view', 1, 0, '', 0, ''),
  752. (863, 10, 'shipment_type', NULL, '', 'int', '', '', '', 'Shipment', NULL, '', 1, 0, '', 0, ''),
  753. (864, 8, 'cybersource_token', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  754. (865, 18, 'cybersource_token', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  755. (866, 28, 'cybersource_token', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  756. (867, 8, 'flo2cash_account_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  757. (868, 8, 'ideal_issuer_id', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  758. (869, 8, 'ideal_issuer_title', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  759. (870, 8, 'ideal_transaction_checked', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  760. (871, 8, 'paybox_request_number', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  761. (872, 8, 'paybox_question_number', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  762. (873, 10, 'max_resolution', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Max Resolution', '', NULL, 0, 1, '', 0, ''),
  763. (874, 10, 'ram_size', NULL, NULL, 'varchar', NULL, NULL, 'text', 'RAM SIze', '', NULL, 0, 1, '', 0, ''),
  764. (875, 10, 'contrast_ratio', NULL, NULL, 'int', NULL, NULL, 'select', 'Contrast Ratio', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  765. (876, 10, 'response_time', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Response Time', '', NULL, 0, 1, '', 0, ''),
  766. (877, 10, 'cpu_speed', NULL, NULL, 'int', NULL, NULL, 'select', 'CPU Speed', '', 'eav/entity_attribute_source_table', 0, 1, '', 0, ''),
  767. (878, 10, 'harddrive_speed', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Disk Speed', '', NULL, 0, 1, '', 0, ''),
  768. (879, 10, 'image_label', NULL, '', 'varchar', '', '', 'text', 'Image Label', NULL, '', 0, 0, '', 0, ''),
  769. (880, 10, 'small_image_label', NULL, '', 'varchar', '', '', 'text', 'Small Image Label', NULL, '', 0, 0, '', 0, ''),
  770. (881, 10, 'thumbnail_label', NULL, '', 'varchar', '', '', 'text', 'Thumbnail Label', NULL, '', 0, 0, '', 0, ''),
  771. (882, 4, 'can_ship_partially', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  772. (883, 4, 'can_ship_partially_item', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  773. (884, 4, 'payment_authorization_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  774. (885, 4, 'payment_authorization_expiration', NULL, '', 'int', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  775. (886, 4, 'shipping_tax_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  776. (887, 4, 'base_shipping_tax_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  777. (888, 4, 'global_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  778. (889, 4, 'base_to_global_rate', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  779. (890, 4, 'base_to_order_rate', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  780. (891, 18, 'global_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  781. (892, 18, 'base_to_global_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  782. (893, 18, 'base_to_order_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  783. (894, 28, 'global_currency_code', NULL, '', 'varchar', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  784. (895, 28, 'base_to_global_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  785. (896, 28, 'base_to_order_rate', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  786. (897, 4, 'discount_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  787. (898, 4, 'discount_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  788. (899, 4, 'discount_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  789. (900, 4, 'base_discount_refunded', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  790. (901, 4, 'base_discount_canceled', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  791. (902, 4, 'base_discount_invoiced', NULL, '', 'static', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  792. (904, 10, 'links_purchased_separately', NULL, '', 'int', '', '', '', 'Links can be purchased separately', NULL, '', 1, 0, '', 0, ''),
  793. (905, 10, 'samples_title', NULL, '', 'varchar', '', '', '', 'Samples title', NULL, '', 1, 0, '', 0, ''),
  794. (906, 10, 'links_title', NULL, '', 'varchar', '', '', '', 'Links title', NULL, '', 1, 0, '', 0, ''),
  795. (907, 29, 'base_weee_tax_applied_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  796. (908, 29, 'base_weee_tax_applied_row_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  797. (909, 29, 'weee_tax_applied_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  798. (910, 29, 'weee_tax_applied_row_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  799. (911, 20, 'base_weee_tax_applied_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  800. (912, 20, 'base_weee_tax_applied_row_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  801. (913, 20, 'weee_tax_applied_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  802. (914, 20, 'weee_tax_applied_row_amount', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  803. (915, 20, 'weee_tax_applied', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  804. (916, 29, 'weee_tax_applied', NULL, '', 'text', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  805. (917, 29, 'weee_tax_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  806. (918, 29, 'weee_tax_row_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  807. (919, 29, 'base_weee_tax_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  808. (920, 29, 'base_weee_tax_row_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  809. (921, 20, 'weee_tax_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  810. (922, 20, 'weee_tax_row_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  811. (923, 20, 'base_weee_tax_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  812. (924, 20, 'base_weee_tax_row_disposition', NULL, '', 'decimal', '', '', 'text', '', NULL, '', 1, 0, '', 0, ''),
  813. (925, 1, 'gender', NULL, NULL, 'int', NULL, NULL, 'select', 'Gender', NULL, 'eav/entity_attribute_source_table', 0, 0, NULL, 0, NULL),
  814. (926, 1, 'created_at', NULL, NULL, 'static', NULL, NULL, 'datetime', 'Created At', NULL, NULL, 0, 0, NULL, 0, NULL),
  815. (927, 1, 'rp_token', NULL, NULL, 'varchar', NULL, NULL, 'hidden', NULL, NULL, NULL, 0, 0, NULL, 0, NULL),
  816. (928, 1, 'rp_token_created_at', NULL, NULL, 'datetime', NULL, NULL, 'date', NULL, NULL, NULL, 0, 0, NULL, 0, NULL),
  817. (929, 9, 'available_sort_by', NULL, 'catalog/category_attribute_backend_sortby', 'text', NULL, NULL, 'multiselect', 'Available Product Listing Sort By', NULL, 'catalog/category_attribute_source_sortby', 1, 0, NULL, 0, NULL),
  818. (930, 9, 'default_sort_by', NULL, 'catalog/category_attribute_backend_sortby', 'varchar', NULL, NULL, 'select', 'Default Product Listing Sort By', NULL, 'catalog/category_attribute_source_sortby', 1, 0, NULL, 0, NULL),
  819. (931, 10, 'page_layout', NULL, NULL, 'varchar', NULL, NULL, 'select', 'Page Layout', NULL, 'catalog/product_attribute_source_layout', 0, 0, NULL, 0, NULL),
  820. (932, 10, 'created_at', NULL, 'eav/entity_attribute_backend_time_created', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  821. (933, 10, 'updated_at', NULL, 'eav/entity_attribute_backend_time_updated', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  822. (934, 9, 'include_in_menu', NULL, NULL, 'int', NULL, NULL, 'select', 'Include in Navigation Menu', NULL, 'eav/entity_attribute_source_boolean', 1, 0, '1', 0, NULL),
  823. (935, 10, 'is_recurring', NULL, NULL, 'int', NULL, NULL, 'select', 'Enable Recurring Profile', NULL, 'eav/entity_attribute_source_boolean', 0, 0, NULL, 0, 'Products with recurring profile participate in catalog as nominal items.'),
  824. (936, 10, 'recurring_profile', NULL, 'catalog/product_attribute_backend_recurring', 'text', NULL, NULL, 'text', 'Recurring Payment Profile', NULL, NULL, 0, 0, NULL, 0, NULL),
  825. (937, 9, 'custom_use_parent_settings', NULL, NULL, 'int', NULL, NULL, 'select', 'Use Parent Category Settings', NULL, 'eav/entity_attribute_source_boolean', 0, 0, NULL, 0, NULL),
  826. (938, 9, 'custom_apply_to_products', NULL, NULL, 'int', NULL, NULL, 'select', 'Apply To Products', NULL, 'eav/entity_attribute_source_boolean', 0, 0, NULL, 0, NULL),
  827. (939, 9, 'filter_price_range', NULL, NULL, 'decimal', NULL, NULL, 'text', 'Layered Navigation Price Step', NULL, NULL, 0, 0, NULL, 0, NULL),
  828. (940, 10, 'country_of_manufacture', NULL, NULL, 'varchar', NULL, NULL, 'select', 'Country of Manufacture', NULL, 'catalog/product_attribute_source_countryofmanufacture', 0, 0, NULL, 0, NULL),
  829. (941, 10, 'msrp_enabled', NULL, 'catalog/product_attribute_backend_msrp', 'varchar', NULL, NULL, 'select', 'Apply MAP', NULL, 'catalog/product_attribute_source_msrp_type_enabled', 0, 0, '2', 0, NULL),
  830. (942, 10, 'msrp_display_actual_price_type', NULL, 'catalog/product_attribute_backend_boolean', 'varchar', NULL, NULL, 'select', 'Display Actual Price', NULL, 'catalog/product_attribute_source_msrp_type_price', 0, 0, '4', 0, NULL),
  831. (943, 10, 'msrp', NULL, 'catalog/product_attribute_backend_price', 'decimal', NULL, NULL, 'price', 'Manufacturer''s Suggested Retail Price', NULL, NULL, 0, 0, NULL, 0, NULL),
  832. (945, 4, 'base_total_invoiced_cost', NULL, NULL, 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  833. (946, 4, 'x_forwarded_for', NULL, NULL, 'varchar', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  834. (947, 4, 'protect_code', NULL, NULL, 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  835. (948, 8, 'additional_information', NULL, NULL, 'text', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  836. (949, 4, 'customer_gender', NULL, NULL, 'int', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  837. (950, 8, 'base_amount_paid_online', NULL, NULL, 'decimal', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  838. (951, 8, 'base_amount_refunded_online', NULL, NULL, 'decimal', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  839. (952, 10, 'links_exist', NULL, NULL, 'int', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '0', 0, NULL),
  840. (953, 9, 'thumbnail', NULL, 'catalog/category_attribute_backend_image', 'varchar', NULL, NULL, 'image', 'Thumbnail Image', NULL, NULL, 0, 0, NULL, 0, NULL),
  841. (954, 1, 'disable_auto_group_change', NULL, 'customer/attribute_backend_data_boolean', 'static', NULL, NULL, 'boolean', 'Disable Automatic Group Change Based on VAT ID', NULL, NULL, 0, 0, NULL, 0, NULL),
  842. (955, 2, 'vat_id', NULL, NULL, 'varchar', NULL, NULL, 'text', 'VAT number', NULL, NULL, 0, 0, NULL, 0, NULL),
  843. (956, 2, 'vat_is_valid', NULL, NULL, 'int', NULL, NULL, 'text', 'VAT number validity', NULL, NULL, 0, 0, NULL, 0, NULL),
  844. (957, 2, 'vat_request_id', NULL, NULL, 'varchar', NULL, NULL, 'text', 'VAT number validation request ID', NULL, NULL, 0, 0, NULL, 0, NULL),
  845. (958, 2, 'vat_request_date', NULL, NULL, 'varchar', NULL, NULL, 'text', 'VAT number validation request date', NULL, NULL, 0, 0, NULL, 0, NULL),
  846. (959, 2, 'vat_request_success', NULL, NULL, 'int', NULL, NULL, 'text', 'VAT number validation request success', NULL, NULL, 0, 0, NULL, 0, NULL),
  847. (960, 10, 'group_price', NULL, 'catalog/product_attribute_backend_groupprice', 'decimal', NULL, NULL, 'text', 'Group Price', NULL, NULL, 0, 0, NULL, 0, NULL),
  848. (961, 10, 'em_featured', NULL, NULL, 'int', NULL, NULL, 'boolean', 'Featured Product', NULL, NULL, 0, 1, '0', 0, NULL),
  849. (962, 10, 'em_deal', NULL, NULL, 'int', NULL, NULL, 'boolean', 'Special Deal', NULL, NULL, 0, 1, '0', 0, NULL),
  850. (963, 10, 'em_hot', NULL, NULL, 'int', NULL, NULL, 'boolean', 'Hot Product', NULL, NULL, 0, 1, '0', 0, NULL),
  851. (964, 31, 'name', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Label Name', NULL, NULL, 1, 0, NULL, 0, NULL),
  852. (965, 31, 'image', NULL, 'productlabels/productlabels_attribute_backend_image', 'varchar', NULL, NULL, 'image', 'Image', NULL, NULL, 0, 0, NULL, 0, NULL),
  853. (966, 31, 'background', NULL, 'productlabels/productlabels_attribute_backend_image', 'varchar', NULL, NULL, 'image', 'Background', NULL, NULL, 0, 0, NULL, 0, NULL),
  854. (967, 31, 'texthtml', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Text', NULL, NULL, 0, 0, NULL, 0, NULL),
  855. (968, 31, 'css_class', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Css class', NULL, NULL, 0, 0, NULL, 0, 'The name of often used css.(Bestseller Product Label: bestseller; New Product Label: new; Sale Product Label: special)'),
  856. (969, 31, 'status', NULL, NULL, 'int', NULL, NULL, 'select', 'Enable', NULL, 'eav/entity_attribute_source_boolean', 1, 0, NULL, 0, NULL),
  857. (970, 31, 'actions', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Actions', NULL, NULL, 0, 0, NULL, 0, NULL),
  858. (971, 31, 'created_at', NULL, 'eav/entity_attribute_backend_time_created', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  859. (972, 31, 'updated_at', NULL, 'eav/entity_attribute_backend_time_updated', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  860. (973, 32, 'content', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Css Content', NULL, NULL, 0, 0, NULL, 0, NULL),
  861. (974, 33, 'title', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Title', NULL, NULL, 1, 0, NULL, 0, NULL),
  862. (975, 33, 'post_identifier', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Identifier', NULL, NULL, 0, 0, NULL, 0, NULL),
  863. (976, 33, 'image', NULL, 'blog/post_attribute_backend_image', 'varchar', NULL, NULL, 'image', 'Image', NULL, NULL, 0, 0, NULL, 0, NULL),
  864. (977, 33, 'author_id', NULL, NULL, 'int', NULL, NULL, 'select', 'Author', NULL, 'blog/post_attribute_source_author', 1, 0, NULL, 0, NULL),
  865. (978, 33, 'status', NULL, NULL, 'int', NULL, NULL, 'select', 'Is Active', NULL, 'eav/entity_attribute_source_boolean', 1, 0, NULL, 0, NULL),
  866. (979, 33, 'allow_comment', NULL, NULL, 'int', NULL, NULL, 'select', 'Allow Comment', NULL, 'blog/post_attribute_source_allowcomment', 0, 0, NULL, 0, NULL),
  867. (980, 33, 'post_content_heading', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Post Content Heading', NULL, NULL, 1, 0, NULL, 0, NULL),
  868. (981, 33, 'post_intro', NULL, NULL, 'text', NULL, NULL, 'editor', 'Introduction', NULL, NULL, 1, 0, NULL, 0, NULL),
  869. (982, 33, 'post_content', NULL, NULL, 'text', NULL, NULL, 'editor', 'Content', NULL, NULL, 1, 0, NULL, 0, NULL),
  870. (983, 33, 'custom_design', NULL, NULL, 'varchar', NULL, NULL, 'select', 'Custom Design', NULL, 'core/design_source_design', 0, 0, NULL, 0, NULL),
  871. (984, 33, 'custom_design_from', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', NULL, NULL, 'date', 'Custom Design From', NULL, NULL, 0, 0, NULL, 0, NULL),
  872. (985, 33, 'custom_design_to', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', NULL, NULL, 'date', 'Custom Design To', NULL, NULL, 0, 0, NULL, 0, NULL),
  873. (986, 33, 'custom_layout', NULL, NULL, 'varchar', NULL, NULL, 'select', 'Custom Layout', NULL, 'blog/post_attribute_source_layout', 0, 0, NULL, 0, NULL),
  874. (987, 33, 'custom_layout_update_xml', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Custom Layout Update Xml', NULL, NULL, 0, 0, NULL, 0, NULL),
  875. (988, 33, 'post_meta_keywords', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Keywords', NULL, NULL, 0, 0, NULL, 0, NULL),
  876. (989, 33, 'post_meta_description', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Descrition', NULL, NULL, 0, 0, NULL, 0, NULL),
  877. (990, 33, 'created_at', NULL, 'eav/entity_attribute_backend_time_created', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  878. (991, 33, 'updated_at', NULL, 'eav/entity_attribute_backend_time_updated', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 1, 0, NULL, 0, NULL),
  879. (992, 34, 'name', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Name', NULL, NULL, 1, 0, NULL, 0, NULL),
  880. (993, 34, 'description', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Description', NULL, NULL, 0, 0, NULL, 0, NULL),
  881. (994, 34, 'image', NULL, 'blog/category_attribute_backend_image', 'varchar', NULL, NULL, 'image', 'Image', NULL, NULL, 0, 0, NULL, 0, NULL),
  882. (995, 34, 'page_title', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Page Title', NULL, NULL, 1, 0, NULL, 0, NULL),
  883. (996, 34, 'meta_keywords', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Meta Keywords', NULL, NULL, 0, 0, NULL, 0, NULL),
  884. (997, 34, 'meta_description', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Meta Description', NULL, NULL, 0, 0, NULL, 0, NULL),
  885. (998, 34, 'is_active', NULL, NULL, 'int', NULL, NULL, 'select', 'Is Active', NULL, 'eav/entity_attribute_source_boolean', 1, 0, NULL, 0, NULL),
  886. (999, 34, 'url_key', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Url Key', NULL, NULL, 0, 0, NULL, 0, NULL),
  887. (1000, 34, 'show_image', NULL, NULL, 'int', NULL, NULL, 'select', 'Show image at frontend', NULL, 'eav/entity_attribute_source_boolean', 1, 0, NULL, 0, NULL),
  888. (1001, 34, 'display_mode', NULL, NULL, 'int', NULL, NULL, 'select', 'Display Mode', NULL, 'blog/category_attribute_source_displaymode', 0, 0, NULL, 0, NULL),
  889. (1002, 34, 'cms_block', NULL, NULL, 'int', NULL, NULL, 'select', 'CMS Block', NULL, 'blog/category_attribute_source_cmsblock', 0, 0, NULL, 0, NULL),
  890. (1003, 34, 'is_anchor', NULL, NULL, 'int', NULL, NULL, 'select', 'Is Anchor', NULL, 'eav/entity_attribute_source_boolean', 0, 0, NULL, 0, NULL),
  891. (1004, 34, 'custom_use_parent_settings', NULL, NULL, 'int', NULL, NULL, 'select', 'Use Parent Category Settings', NULL, 'eav/entity_attribute_source_boolean', 0, 0, NULL, 0, NULL),
  892. (1005, 34, 'custom_design', NULL, NULL, 'varchar', NULL, NULL, 'select', 'Custom Design', NULL, 'core/design_source_design', 0, 0, NULL, 0, NULL),
  893. (1006, 34, 'custom_design_from', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', NULL, NULL, 'date', 'Custom Design From', NULL, NULL, 0, 0, NULL, 0, NULL),
  894. (1007, 34, 'custom_design_to', NULL, 'eav/entity_attribute_backend_datetime', 'datetime', NULL, NULL, 'date', 'Custom Design To', NULL, NULL, 0, 0, NULL, 0, NULL),
  895. (1008, 34, 'custom_layout', NULL, NULL, 'varchar', NULL, NULL, 'select', 'Custom Layout', NULL, 'blog/post_attribute_source_layout', 0, 0, NULL, 0, NULL),
  896. (1009, 34, 'custom_layout_update_xml', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Custom Layout Update Xml', NULL, NULL, 0, 0, NULL, 0, NULL),
  897. (1010, 34, 'created_at', NULL, 'eav/entity_attribute_backend_time_created', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 0, 0, NULL, 0, NULL),
  898. (1011, 34, 'updated_at', NULL, 'eav/entity_attribute_backend_time_updated', 'static', NULL, NULL, 'text', NULL, NULL, NULL, 0, 0, NULL, 0, NULL),
  899. (1012, 34, 'level', NULL, NULL, 'static', NULL, NULL, 'text', 'Level', NULL, NULL, 0, 0, NULL, 0, NULL),
  900. (1013, 34, 'children_count', NULL, NULL, 'static', NULL, NULL, 'text', 'Children Count', NULL, NULL, 0, 0, NULL, 0, NULL),
  901. (1014, 34, 'path', NULL, NULL, 'static', NULL, NULL, 'text', 'Path', NULL, NULL, 0, 0, NULL, 0, NULL),
  902. (1015, 34, 'position', NULL, NULL, 'static', NULL, NULL, 'text', 'Position', NULL, NULL, 0, 0, NULL, 0, NULL),
  903. (1016, 10, 'attribute1', NULL, NULL, 'varchar', NULL, NULL, 'multiselect', 'attribute1', NULL, NULL, 0, 1, '', 0, NULL),
  904. (1017, 10, 'attribute2', NULL, NULL, 'varchar', NULL, NULL, 'multiselect', 'attribute2', NULL, NULL, 0, 1, '', 0, NULL),
  905. (1018, 10, 'attribute3', NULL, NULL, 'int', NULL, NULL, 'select', 'attribute3', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  906. (1019, 10, 'code1', NULL, NULL, 'int', NULL, NULL, 'select', 'code1', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  907. (1020, 10, 'age', NULL, NULL, 'int', NULL, NULL, 'select', 'Age Group', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  908. (1021, 10, 'gendernew', NULL, NULL, 'int', NULL, NULL, 'select', 'GENDER', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  909. (1022, 10, 'discount', NULL, NULL, 'int', NULL, NULL, 'select', 'Percentage of discount', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  910. (1023, 10, 'rating', NULL, NULL, 'int', NULL, NULL, 'select', 'CUSTOMER RATING', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  911. (1024, 10, 'brnad', NULL, NULL, 'int', NULL, NULL, 'select', 'Brand', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  912. (1025, 10, 'barcodeid', NULL, NULL, 'varchar', NULL, NULL, 'text', 'BAR CODE ID', NULL, NULL, 0, 1, NULL, 0, NULL),
  913. (1026, 10, 'locationid', NULL, NULL, 'varchar', NULL, NULL, 'text', 'LOCATION ID', NULL, NULL, 0, 1, NULL, 0, NULL),
  914. (1027, 10, 'item', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Items included in the Product', NULL, NULL, 0, 1, NULL, 0, NULL),
  915. (1031, 10, 'modelnumber', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Model number :', NULL, NULL, 0, 1, NULL, 0, NULL),
  916. (1032, 10, 'setnumber', NULL, NULL, 'varchar', NULL, NULL, 'text', 'SET Number', NULL, NULL, 0, 1, NULL, 0, NULL),
  917. (1033, 10, 'ghjg', NULL, NULL, 'static', NULL, NULL, NULL, 'ghjg', NULL, NULL, 0, 1, NULL, 0, NULL),
  918. (1034, 10, 'az98jhakhfd_23', NULL, NULL, 'varchar', NULL, NULL, 'multiselect', 'az98jhakhfd_23', NULL, NULL, 0, 1, '', 0, NULL),
  919. (1035, 10, 'bfr98jhakhfd_2567_90asdjhlkh', NULL, NULL, 'static', NULL, NULL, NULL, 'bfr98jhakhfd_2567_90asdjhlkh', NULL, NULL, 0, 1, NULL, 0, NULL),
  920. (1036, 10, 'type', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  921. (1037, 10, 'remote', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Remote Control Features', NULL, NULL, 0, 1, NULL, 0, NULL),
  922. (1038, 10, 'control', NULL, NULL, 'varchar', NULL, NULL, 'text', 'CONTROL TYPE', NULL, NULL, 0, 1, NULL, 0, NULL),
  923. (1039, 10, 'batterytypeforremote', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Battery Type for Remote', NULL, NULL, 0, 1, NULL, 0, NULL),
  924. (1040, 10, 'batterytypefortoy', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Battery Type for Toy', NULL, NULL, 0, 1, NULL, 0, NULL),
  925. (1041, 10, 'powereddby', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Powered by', NULL, NULL, 0, 1, NULL, 0, NULL),
  926. (1042, 10, 'other', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Other Features', NULL, NULL, 0, 1, NULL, 0, NULL),
  927. (1043, 10, 'productweight', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Weight [gm]', NULL, NULL, 0, 1, NULL, 0, NULL),
  928. (1044, 10, 'productlength', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Length [cm]', NULL, NULL, 0, 1, NULL, 0, NULL),
  929. (1045, 10, 'productwidth', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Width[cm]', NULL, NULL, 0, 1, NULL, 0, NULL),
  930. (1046, 10, 'material', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Material', NULL, NULL, 0, 1, NULL, 0, NULL),
  931. (1048, 9, 'product_meta_title_tpl', NULL, NULL, 'text', NULL, NULL, 'text', 'Child Products Meta Title', NULL, NULL, 0, 1, NULL, 0, NULL),
  932. (1049, 9, 'product_meta_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Products Meta Description', NULL, NULL, 0, 1, NULL, 0, NULL),
  933. (1050, 9, 'product_meta_keywords_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Products Meta Keywords', NULL, NULL, 0, 1, NULL, 0, NULL),
  934. (1051, 9, 'product_title_tpl', NULL, NULL, 'text', NULL, NULL, 'text', 'Child Products H1', NULL, NULL, 0, 1, NULL, 0, NULL),
  935. (1052, 9, 'product_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Products SEO description', NULL, NULL, 0, 1, NULL, 0, NULL),
  936. (1053, 9, 'category_meta_title_tpl', NULL, NULL, 'text', NULL, NULL, 'text', 'Child Categories Meta Title', NULL, NULL, 0, 1, NULL, 0, NULL),
  937. (1054, 9, 'category_meta_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Categories Meta Description', NULL, NULL, 0, 1, NULL, 0, NULL),
  938. (1055, 9, 'category_meta_keywords_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Categories Meta Keywords', NULL, NULL, 0, 1, NULL, 0, NULL),
  939. (1056, 9, 'category_title_tpl', NULL, NULL, 'text', NULL, NULL, 'text', 'Child Categories H1', NULL, NULL, 0, 1, NULL, 0, NULL),
  940. (1057, 9, 'category_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Categories SEO description', NULL, NULL, 0, 1, NULL, 0, NULL),
  941. (1058, 9, 'filter_meta_title_tpl', NULL, NULL, 'text', NULL, NULL, 'text', 'Layered Navigation Meta Title', NULL, NULL, 0, 1, NULL, 0, NULL),
  942. (1059, 9, 'filter_meta_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Layered Navigation Meta Description', NULL, NULL, 0, 1, NULL, 0, NULL),
  943. (1060, 9, 'filter_meta_keywords_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Layered Navigation Meta Keywords', NULL, NULL, 0, 1, NULL, 0, NULL),
  944. (1061, 9, 'filter_title_tpl', NULL, NULL, 'text', NULL, NULL, 'text', 'Layered Navigation H1', NULL, NULL, 0, 1, NULL, 0, NULL),
  945. (1062, 9, 'filter_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Layered Navigation SEO description', NULL, NULL, 0, 1, NULL, 0, NULL),
  946. (1063, 10, 'seo_category', NULL, NULL, 'int', NULL, 'seo/system_config_frontend_category', 'select', 'Main Category for SEO', NULL, 'seo/system_config_source_category', 0, 1, NULL, 0, NULL),
  947. (1064, 10, 'seo_meta_robots', NULL, NULL, 'int', NULL, NULL, 'select', 'Robots Meta Tag', NULL, 'seo/system_config_source_metarobots', 0, 1, NULL, 0, NULL),
  948. (1065, 9, 'product_short_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Products Short Description', NULL, NULL, 0, 1, NULL, 0, NULL),
  949. (1066, 9, 'product_full_description_tpl', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Child Products Description', NULL, NULL, 0, 1, NULL, 0, NULL),
  950. (1067, 10, 'seo_canonical_store_id', NULL, NULL, 'int', NULL, NULL, 'select', 'Main Store for Canonical Url', NULL, 'seo/system_config_source_canonical', 0, 1, NULL, 0, NULL),
  951. (1068, 9, 'seo_page_header', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Page Header', NULL, NULL, 0, 1, NULL, 0, 'Change H1 for current category in frontend'),
  952. (1069, 10, 'seo_canonical_url', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Canonical URL', NULL, NULL, 0, 1, NULL, 0, 'If empty, canonical will be added automatically.<br/> Example: <br/>http://example.com/url.html, <br/>url.html'),
  953. (1070, 10, 'charactar', NULL, NULL, 'int', NULL, NULL, 'select', 'Character', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  954. (1071, 10, 'my_attribute', NULL, NULL, 'varchar', NULL, NULL, 'text', 'my attribute', NULL, NULL, 0, 1, NULL, 0, NULL),
  955. (1072, 10, 'googleshopping_exclude', NULL, NULL, 'int', NULL, NULL, 'select', 'Exclude for Google Shopping', NULL, 'eav/entity_attribute_source_boolean', 0, 1, NULL, 0, NULL),
  956. (1073, 10, 'googleshopping_condition', NULL, 'eav/entity_attribute_backend_array', 'int', NULL, NULL, 'select', 'Product Condition', NULL, NULL, 0, 1, 'new', 0, NULL),
  957. (1074, 9, 'googleshopping_category', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Google Product Category', NULL, NULL, 0, 1, NULL, 0, NULL),
  958. (1075, 10, 'a_001', NULL, NULL, 'int', NULL, NULL, 'select', 'a_001', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  959. (1076, 10, 'toyset', NULL, NULL, 'varchar', NULL, NULL, 'text', 'toycode', NULL, NULL, 0, 1, NULL, 0, NULL),
  960. (1077, 10, 'jjjjjjjjjjjjjjjjjjjjjjjjjjjjj', NULL, NULL, 'static', NULL, NULL, NULL, 'jjjjjjjjjjjjjjjjjjjjjjjjjjjjj', NULL, NULL, 0, 1, NULL, 0, NULL),
  961. (1078, 10, 'm_7', NULL, NULL, 'static', NULL, NULL, NULL, 'm_7', NULL, NULL, 0, 1, NULL, 0, NULL),
  962. (1079, 10, 'yyyyyyyyyyyyyy', NULL, NULL, 'static', NULL, NULL, NULL, 'yyyyyyyyyyyyyy', NULL, NULL, 0, 1, NULL, 0, NULL),
  963. (1080, 10, 'hhhhhhhhhhhhhhh', NULL, NULL, 'static', NULL, NULL, NULL, 'hhhhhhhhhhhhhhh', NULL, NULL, 0, 1, NULL, 0, NULL),
  964. (1081, 10, 'yuil', NULL, NULL, 'static', NULL, NULL, NULL, 'yuil', NULL, NULL, 0, 1, NULL, 0, NULL),
  965. (1082, 10, 'yuki', NULL, NULL, 'varchar', NULL, NULL, 'multiselect', 'yuki', NULL, NULL, 0, 1, '', 0, NULL),
  966. (1083, 10, 'costprice', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Cost of the toy', NULL, NULL, 0, 1, NULL, 0, NULL),
  967. (1084, 10, 'mark', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Mark up price', NULL, NULL, 0, 1, NULL, 0, NULL),
  968. (1085, 10, 'totalprice', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Total Price', NULL, NULL, 0, 1, NULL, 0, NULL),
  969. (1086, 10, 'purchaseddcose', NULL, NULL, 'varchar', NULL, NULL, 'text', 'purchasedcost', NULL, NULL, 0, 1, NULL, 0, NULL),
  970. (1087, 10, 'vat', NULL, NULL, 'varchar', NULL, NULL, 'text', 'vat', NULL, NULL, 0, 1, NULL, 0, NULL),
  971. (1088, 10, 'size', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Size [cm]', NULL, NULL, 0, 1, NULL, 0, NULL),
  972. (1089, 10, 'productheight', NULL, NULL, 'varchar', NULL, NULL, 'text', 'product height[cm]', NULL, NULL, 0, 1, NULL, 0, NULL),
  973. (1090, 10, 'productdepth', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product depth[cm]', NULL, NULL, 0, 1, NULL, 0, NULL),
  974. (1091, 10, 'sizeinch', NULL, NULL, 'varchar', NULL, NULL, 'text', 'size [ in ]', NULL, NULL, 0, 1, NULL, 0, NULL),
  975. (1092, 10, 'cod_available', NULL, 'eav/entity_attribute_backend_array', 'varchar', NULL, NULL, 'select', 'Cash On Delivery', NULL, 'eav/entity_attribute_source_boolean', 0, 0, NULL, 0, 'Cash On Delivery for this product'),
  976. (1093, 10, 'shippingprice1', NULL, NULL, 'varchar', NULL, NULL, 'text', 'shipping price 1', NULL, NULL, 0, 1, NULL, 0, NULL),
  977. (1094, 9, 'shipping_price', NULL, NULL, 'text', NULL, NULL, 'text', 'Category Shipping Price', NULL, NULL, 0, 0, NULL, 0, 'Flat Rate Shipping for the Category'),
  978. (1095, 10, 'product_shipping', NULL, NULL, 'text', NULL, NULL, 'text', 'Product Shipping', NULL, NULL, 0, 1, NULL, 0, NULL),
  979. (1096, 10, 'breadth', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Breadth', NULL, NULL, 0, 1, NULL, 0, NULL),
  980. (1098, 10, 'deal_price', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Deal Price', NULL, NULL, 0, 0, NULL, 0, ' '),
  981. (1099, 10, 'deal_start_time', NULL, NULL, 'datetime', NULL, NULL, 'date', 'Deal Start Time', NULL, NULL, 0, 0, NULL, 0, NULL),
  982. (1100, 10, 'deal_end_time', NULL, NULL, 'datetime', NULL, NULL, 'date', 'Deal End Time', NULL, NULL, 0, 0, NULL, 0, NULL),
  983. (1101, 10, 'deal_qty', NULL, NULL, 'int', NULL, NULL, 'text', 'Deal Qty', NULL, NULL, 0, 1, NULL, 0, NULL),
  984. (1102, 10, 'deal_bought', NULL, NULL, 'int', NULL, NULL, 'text', 'Deal Bought', NULL, NULL, 0, 1, '0', 0, NULL);
  985. INSERT INTO `eav_attribute` (`attribute_id`, `entity_type_id`, `attribute_code`, `attribute_model`, `backend_model`, `backend_type`, `backend_table`, `frontend_model`, `frontend_input`, `frontend_label`, `frontend_class`, `source_model`, `is_required`, `is_user_defined`, `default_value`, `is_unique`, `note`) VALUES
  986. (1103, 10, 'deal_status', NULL, NULL, 'int', NULL, NULL, 'boolean', 'Deal Status', NULL, NULL, 0, 1, NULL, 0, NULL),
  987. (1104, 10, 'deal_statuses', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Deal Statuses', NULL, NULL, 0, 0, NULL, 0, ' '),
  988. (1105, 10, 'old_special_price', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Old special price', NULL, NULL, 0, 0, NULL, 0, ' '),
  989. (1106, 10, 'old_special_date_from', NULL, NULL, 'datetime', NULL, NULL, 'date', 'Old special date from', NULL, NULL, 0, 0, NULL, 0, ' '),
  990. (1107, 10, 'old_special_date_to', NULL, NULL, 'datetime', NULL, NULL, 'date', 'Old special date to', NULL, NULL, 0, 0, NULL, 0, ' '),
  991. (1108, 9, 'deal_update_days', NULL, NULL, 'varchar', NULL, NULL, 'multiselect', 'Deal Products will be run and update each', NULL, 'Webinse_DailyDeals_Model_Entity_Attribute_Source_Days', 0, 1, NULL, 0, NULL),
  992. (1109, 9, 'qty_deal_product', NULL, NULL, 'int', NULL, NULL, 'text', 'Qty Deal Products in Category', NULL, NULL, 0, 1, NULL, 0, NULL),
  993. (1110, 10, 'deal_category_id', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Deal Category Id', NULL, NULL, 0, 0, NULL, 0, ' '),
  994. (1111, 9, 'deal_qty_product_percent', NULL, NULL, 'int', NULL, NULL, 'text', 'Qty Deal Product (depends on availability in stock)', NULL, NULL, 0, 1, NULL, 0, NULL),
  995. (1112, 9, 'deal_discount_percent', NULL, NULL, 'int', NULL, NULL, 'text', 'Deal Discount Percent', NULL, NULL, 0, 1, NULL, 0, NULL),
  996. (1113, 10, 'choice_type_dealstime', NULL, NULL, 'int', NULL, NULL, 'select', 'Choice type dealstime', NULL, 'eav/entity_attribute_source_boolean', 0, 0, '1', 0, NULL),
  997. (1114, 10, 'deal_update_days_product', NULL, NULL, 'varchar', NULL, NULL, 'multiselect', 'Deal Products will be run and update each', NULL, 'Webinse_DailyDeals_Model_Entity_Attribute_Source_Days', 0, 1, NULL, 0, NULL),
  998. (1115, 10, 'deals_choice_category', NULL, NULL, 'int', NULL, NULL, 'select', 'Deals choice from category', NULL, 'eav/entity_attribute_source_boolean', 0, 0, '0', 0, NULL),
  999. (1116, 9, 'searchindex_weight', NULL, NULL, 'text', NULL, NULL, 'text', 'Search Weight', NULL, NULL, 0, 1, NULL, 0, NULL),
  1000. (1117, 10, 'searchindex_weight', NULL, NULL, 'text', NULL, NULL, 'text', 'Search Weight', NULL, NULL, 0, 1, NULL, 0, NULL),
  1001. (1118, 10, 'mp_local_shipping_charge', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Local Shipping Charges', 'validate-zero-or-greater', NULL, 0, 1, NULL, 0, 'Local Shipping Charges'),
  1002. (1119, 10, 'mp_regional_shipping_charge', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Within City Shipping Charges', NULL, NULL, 0, 1, NULL, 0, 'Regional Shipping Charges'),
  1003. (1120, 10, 'mp_state_shipping_charge', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Rest of India Shipping Charges', NULL, NULL, 0, 1, NULL, 0, 'State Shipping Charges'),
  1004. (1121, 10, 'dexxtz_video', NULL, NULL, 'text', NULL, NULL, 'textarea', 'Video (embed)', NULL, NULL, 0, 0, NULL, 0, NULL),
  1005. (1122, 10, 'productlengthin', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Length [Inch ]', NULL, NULL, 0, 1, NULL, 0, NULL),
  1006. (1123, 10, 'productwidthin', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Width [Inch]', NULL, NULL, 0, 1, NULL, 0, NULL),
  1007. (1124, 10, 'productheightinch', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Height [ inch ]', NULL, NULL, 0, 1, NULL, 0, NULL),
  1008. (1125, 10, 'productdepthinch', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Depth [inch]', NULL, NULL, 0, 1, NULL, 0, NULL),
  1009. (1129, 10, 'productdimension', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Array', NULL, NULL, 0, 1, NULL, 0, NULL),
  1010. (1130, 10, 'deminsion', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Dimension', NULL, NULL, 0, 1, NULL, 0, NULL),
  1011. (1131, 10, 'sizes', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Size', NULL, NULL, 0, 1, NULL, 0, NULL),
  1012. (1132, 10, 'weight_1', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Weight', NULL, NULL, 0, 1, NULL, 0, NULL),
  1013. (1133, 10, 'length', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Length', NULL, NULL, 0, 1, NULL, 0, NULL),
  1014. (1134, 10, 'height', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Height', NULL, NULL, 0, 1, NULL, 0, NULL),
  1015. (1135, 10, 'depth', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Depth', NULL, NULL, 0, 1, NULL, 0, NULL),
  1016. (1136, 10, 'width', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Product Width', NULL, NULL, 0, 1, NULL, 0, NULL),
  1017. (1137, 10, 'author', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Authored By', NULL, NULL, 0, 1, NULL, 0, NULL),
  1018. (1138, 10, 'games_harddisk', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Hard Disk', NULL, NULL, 0, 1, NULL, 0, NULL),
  1019. (1139, 10, 'games_screensize', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Screen Size', NULL, NULL, 0, 1, NULL, 0, NULL),
  1020. (1140, 10, 'games_memorycard', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Memory Card', NULL, NULL, 0, 1, NULL, 0, NULL),
  1021. (1141, 10, 'games_consoletypes', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Console Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1022. (1142, 10, 'games_graphics', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Graphics', NULL, NULL, 0, 1, NULL, 0, NULL),
  1023. (1143, 10, 'games_expandable', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Expandable Storage Capacity', NULL, NULL, 0, 1, NULL, 0, NULL),
  1024. (1144, 10, 'games_internalstorage', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Internal Storage', NULL, NULL, 0, 1, NULL, 0, NULL),
  1025. (1145, 10, 'games_ram', NULL, NULL, 'varchar', NULL, NULL, 'text', 'RAM', NULL, NULL, 0, 1, NULL, 0, NULL),
  1026. (1146, 10, 'games_bluetooth', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Bluetooth', NULL, NULL, 0, 1, NULL, 0, NULL),
  1027. (1147, 10, 'games_controllers', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Controllers', NULL, NULL, 0, 1, NULL, 0, NULL),
  1028. (1148, 10, 'games_hdmi', NULL, NULL, 'varchar', NULL, NULL, 'text', 'HDMI', NULL, NULL, 0, 1, NULL, 0, NULL),
  1029. (1149, 10, 'games_mic', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Mic', NULL, NULL, 0, 1, NULL, 0, NULL),
  1030. (1150, 10, 'games_videoencoding', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Video Encoding', NULL, NULL, 0, 1, NULL, 0, NULL),
  1031. (1151, 10, 'games_resolution', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Resolution', NULL, NULL, 0, 1, NULL, 0, NULL),
  1032. (1152, 10, 'games_avmultioutput', NULL, NULL, 'varchar', NULL, NULL, 'text', 'AV Multi Output', NULL, NULL, 0, 1, NULL, 0, NULL),
  1033. (1153, 10, 'games_usb', NULL, NULL, 'varchar', NULL, NULL, 'text', 'USB', NULL, NULL, 0, 1, NULL, 0, NULL),
  1034. (1154, 10, 'games_sound', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Sound', NULL, NULL, 0, 1, NULL, 0, NULL),
  1035. (1155, 10, 'games_processor', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Processor', NULL, NULL, 0, 1, NULL, 0, NULL),
  1036. (1156, 10, 'games_rechargable', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Rechargable', NULL, NULL, 0, 1, NULL, 0, NULL),
  1037. (1158, 10, 'games_warranty', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Warranty', NULL, NULL, 0, 1, NULL, 0, NULL),
  1038. (1159, 10, 'games_coveredinwarranty', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Covered in Warranty', NULL, NULL, 0, 1, NULL, 0, NULL),
  1039. (1160, 10, 'games_warrantysummary', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Warranty Summary', NULL, NULL, 0, 1, NULL, 0, NULL),
  1040. (1161, 10, 'games_warrantyservicetype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Warranty Service Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1041. (1162, 10, 'games_notcoverdinwarranty', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Not Covered in Warranty', NULL, NULL, 0, 1, NULL, 0, NULL),
  1042. (1163, 10, 'babycare_accessories', NULL, NULL, 'int', NULL, NULL, 'select', 'Baby Accessories', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1043. (1164, 10, 'babycare_babybedding_types', NULL, NULL, 'int', NULL, NULL, 'select', 'Baby Bedding', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1044. (1165, 10, 'babycare_babydiapering_types', NULL, NULL, 'int', NULL, NULL, 'select', 'Baby Diapering', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1045. (1166, 10, 'babycare_babyweight', NULL, NULL, 'int', NULL, NULL, 'select', 'Baby Weight', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1046. (1167, 10, 'babycare_bodycare_types', NULL, NULL, 'int', NULL, NULL, 'select', 'Body Care', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1047. (1168, 10, 'babycare_feedingnursing_types', NULL, NULL, 'int', NULL, NULL, 'select', 'Feeding & Nursing ', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1048. (1170, 10, 'caseandcover', NULL, NULL, 'int', NULL, NULL, 'select', 'Device', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1049. (1171, 10, 'mobile_design', NULL, NULL, 'int', NULL, NULL, 'select', 'Design', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1050. (1172, 10, 'mobile_material', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Material', NULL, NULL, 0, 1, NULL, 0, NULL),
  1051. (1173, 10, 'mobile_texture', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Texture', NULL, NULL, 0, 1, NULL, 0, NULL),
  1052. (1174, 10, 'babycare_organictype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Organic Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1053. (1176, 10, 'babycare_application', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Application Area', NULL, NULL, 0, 1, NULL, 0, NULL),
  1054. (1177, 10, 'babycare_skin', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Skin Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1055. (1178, 10, 'babycare_container', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Container Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1056. (1179, 10, 'babycare_composition', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Composition', NULL, NULL, 0, 1, NULL, 0, NULL),
  1057. (1180, 10, 'babycare_blade', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Blade Features', NULL, NULL, 0, 1, NULL, 0, NULL),
  1058. (1181, 10, 'babycare_handel', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Handel Features', NULL, NULL, 0, 1, NULL, 0, NULL),
  1059. (1183, 10, 'babycare_foldable', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Foldable', NULL, NULL, 0, 1, NULL, 0, NULL),
  1060. (1184, 10, 'babycare_fearure', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Additional Features', NULL, NULL, 0, 1, NULL, 0, NULL),
  1061. (1185, 10, 'babycare_salepackage', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Number Of Contents In Sales Package', NULL, NULL, 0, 1, NULL, 0, NULL),
  1062. (1186, 10, 'babycare_piecesparpack', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Number Of Pieces Per Pack', NULL, NULL, 0, 1, NULL, 0, NULL),
  1063. (1187, 10, 'babycare_machine', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Machine Washable', NULL, NULL, 0, 1, '', 0, NULL),
  1064. (1188, 10, 'babycare_hooded', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Hooded', NULL, NULL, 0, 1, NULL, 0, NULL),
  1065. (1189, 10, 'babycare_design', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Design', NULL, NULL, 0, 1, NULL, 0, NULL),
  1066. (1190, 10, 'babycare_certification', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Certification', NULL, NULL, 0, 1, NULL, 0, NULL),
  1067. (1191, 10, 'babycare_adjustablesuction', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Adjustable Suction', NULL, NULL, 0, 1, NULL, 0, NULL),
  1068. (1192, 10, 'rideons_deliverycondition', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Delivery Condition', NULL, NULL, 0, 1, NULL, 0, NULL),
  1069. (1193, 10, 'rideons_maxiumweight', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Maxium User weight', NULL, NULL, 0, 1, NULL, 0, NULL),
  1070. (1194, 10, 'rideons_noofwheels', NULL, NULL, 'varchar', NULL, NULL, 'text', 'No Of Wheels', NULL, NULL, 0, 1, NULL, 0, NULL),
  1071. (1195, 10, 'rideons_batteryincluded', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Battery Included', NULL, NULL, 0, 1, NULL, 0, NULL),
  1072. (1196, 10, 'rideons_batterytype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Battery Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1073. (1197, 10, 'rideons_speed', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Speed Limit', NULL, NULL, 0, 1, NULL, 0, NULL),
  1074. (1198, 10, 'rideons_charger', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Charger Input', NULL, NULL, 0, 1, NULL, 0, NULL),
  1075. (1199, 10, 'rideons_brakes', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Brakes', NULL, NULL, 0, 1, NULL, 0, NULL),
  1076. (1200, 10, 'rideons_breaktype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Brake Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1077. (1201, 10, 'rideons_storage', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Storage Basket', NULL, NULL, 0, 1, NULL, 0, NULL),
  1078. (1202, 10, 'rideons_chargingtime', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Charging Time', NULL, NULL, 0, 1, NULL, 0, NULL),
  1079. (1204, 10, 'rideon_types', NULL, NULL, 'int', NULL, NULL, 'select', 'Ride On''s Type', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1080. (1205, 10, 'babycare_gender', NULL, 'eav/entity_attribute_backend_array', 'varchar', NULL, NULL, 'multiselect', 'Gender', NULL, NULL, 0, 1, '', 0, NULL),
  1081. (1206, 10, 'babycare_ideal', NULL, NULL, 'int', NULL, NULL, 'select', 'Ideal For', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1082. (1210, 10, 'babycare_type', NULL, NULL, 'int', NULL, NULL, 'select', 'Types', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1083. (1211, 10, 'furniture_beanbages', NULL, NULL, 'int', NULL, NULL, 'select', 'Bean Bags', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1084. (1212, 10, 'furniture_pillows', NULL, NULL, 'int', NULL, NULL, 'select', 'Types', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1085. (1214, 10, 'sport_types', NULL, NULL, 'int', NULL, NULL, 'select', 'Types', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1086. (1216, 10, 'school_ideal', NULL, NULL, 'int', NULL, NULL, 'select', 'Ideal For', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1087. (1217, 10, 'babycare_laundrydetergent', NULL, NULL, 'int', NULL, NULL, 'select', 'Baby laundry & Detergent Products', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1088. (1218, 10, 'school_gender', NULL, 'eav/entity_attribute_backend_array', 'varchar', NULL, NULL, 'multiselect', 'Gender', NULL, NULL, 0, 1, '', 0, NULL),
  1089. (1219, 10, 'sport_ideal', NULL, NULL, 'int', NULL, NULL, 'select', 'Ideal For', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1090. (1220, 10, 'sport_accessories', NULL, NULL, 'int', NULL, NULL, 'select', 'Sports Accessories', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1091. (1221, 10, 'sport_swimmingaccessories', NULL, NULL, 'int', NULL, NULL, 'select', 'Swimming Accessories', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1092. (1222, 10, 'sport_gender', NULL, 'eav/entity_attribute_backend_array', 'varchar', NULL, NULL, 'multiselect', 'Gender', NULL, NULL, 0, 1, '', 0, NULL),
  1093. (1223, 10, 'school_paintmedium', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Paint Medium', NULL, NULL, 0, 1, NULL, 0, NULL),
  1094. (1224, 10, 'school_paintapplication', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Paint Application', NULL, NULL, 0, 1, NULL, 0, NULL),
  1095. (1225, 10, 'school_shades', NULL, NULL, 'varchar', NULL, NULL, 'text', 'No. of Shades', NULL, NULL, 0, 1, NULL, 0, NULL),
  1096. (1226, 10, 'school_crayonsize', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Crayon Size', NULL, NULL, 0, 1, NULL, 0, NULL),
  1097. (1227, 10, 'school_crayontype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Crayon Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1098. (1228, 10, 'school_quantity', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Quantity', NULL, NULL, 0, 1, NULL, 0, NULL),
  1099. (1229, 10, 'school_colorpencils', NULL, NULL, 'varchar', NULL, NULL, 'text', 'No. of Color Pencils', NULL, NULL, 0, 1, NULL, 0, NULL),
  1100. (1230, 10, 'school_brushhandle', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Handle Material', NULL, NULL, 0, 1, NULL, 0, NULL),
  1101. (1231, 10, 'school_bristle', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Bristle Material', NULL, NULL, 0, 1, NULL, 0, NULL),
  1102. (1232, 10, 'school_headtype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Head Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1103. (1233, 10, 'school_brushsize', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Brush Size', NULL, NULL, 0, 1, NULL, 0, NULL),
  1104. (1234, 10, 'school_binding', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Binding', NULL, NULL, 0, 1, NULL, 0, NULL),
  1105. (1235, 10, 'school_nopages', NULL, NULL, 'varchar', NULL, NULL, 'text', 'No. Of Pages', NULL, NULL, 0, 1, NULL, 0, NULL),
  1106. (1236, 10, 'school_covertype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Cover Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1107. (1237, 10, 'school_papertype', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Paper Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1108. (1238, 10, 'school_nosheet', NULL, NULL, 'varchar', NULL, NULL, 'text', 'No. Of Sheet', NULL, NULL, 0, 1, NULL, 0, NULL),
  1109. (1239, 10, 'school_rule', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Rule Type', NULL, NULL, 0, 1, NULL, 0, NULL),
  1110. (1240, 10, 'school_supportedpage', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Supported Paper Size', NULL, NULL, 0, 1, NULL, 0, NULL),
  1111. (1241, 10, 'school_schoolkit', NULL, NULL, 'int', NULL, NULL, 'select', 'School Kits', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL),
  1112. (1242, 10, 'school_stationery', NULL, NULL, 'int', NULL, NULL, 'select', 'Stationery', NULL, 'eav/entity_attribute_source_table', 0, 1, '', 0, NULL);
  1113.  
  1114. --
  1115. -- Constraints for dumped tables
  1116. --
  1117.  
  1118. --
  1119. -- Constraints for table `eav_attribute`
  1120. --
  1121. ALTER TABLE `eav_attribute`
  1122. ADD CONSTRAINT `FK_EAV_ATTRIBUTE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE;
  1123.  
  1124. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  1125. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  1126. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Add Comment
Please, Sign In to add comment