You are viewing an old revision of this post, from February 25, 2015 @ 09:56:35. See below for differences between this version and the current revision.

Cleanly Delete all Orders, Sales & Customer Data in Magento

Last updated for Magento CE 1.4.1.1

This is a work-in-progress to assemble and keep current, the SQL required to perform these actions which are currently not part of the Magento core package but which are often useful for testing and debugging.

Remember to back up your database before using any of these scripts!

Delete *All* Order & Customer Data

 
  1. # Magento CE 1.4.1.1
  2. # Be sure to replace "#_" with your table prefix
  3.  
  4. SET FOREIGN_KEY_CHECKS=0;
  5.  
  6. ##############################
  7. # SALES RELATED TABLES
  8. ##############################
  9. TRUNCATE `#_sales_flat_creditmemo`;
  10. TRUNCATE `#_sales_flat_creditmemo_comment`;
  11. TRUNCATE `#_sales_flat_creditmemo_grid`;
  12. TRUNCATE `#_sales_flat_creditmemo_item`;
  13. TRUNCATE `#_sales_flat_invoice`;
  14. TRUNCATE `#_sales_flat_invoice_comment`;
  15. TRUNCATE `#_sales_flat_invoice_grid`;
  16. TRUNCATE `#_sales_flat_invoice_item`;
  17. TRUNCATE `#_sales_flat_order`;
  18. TRUNCATE `#_sales_flat_order_address`;
  19. TRUNCATE `#_sales_flat_order_grid`;
  20. TRUNCATE `#_sales_flat_order_item`;
  21. TRUNCATE `#_sales_flat_order_payment`;
  22. TRUNCATE `#_sales_flat_order_status_history`;
  23. TRUNCATE `#_sales_flat_quote`;
  24. TRUNCATE `#_sales_flat_quote_address`;
  25. TRUNCATE `#_sales_flat_quote_address_item`;
  26. TRUNCATE `#_sales_flat_quote_item`;
  27. TRUNCATE `#_sales_flat_quote_item_option`;
  28. TRUNCATE `#_sales_flat_quote_payment`;
  29. TRUNCATE `#_sales_flat_quote_shipping_rate`;
  30. TRUNCATE `#_sales_flat_shipment`;
  31. TRUNCATE `#_sales_flat_shipment_comment`;
  32. TRUNCATE `#_sales_flat_shipment_grid`;
  33. TRUNCATE `#_sales_flat_shipment_item`;
  34. TRUNCATE `#_sales_flat_shipment_track`;
  35. TRUNCATE `#_sales_invoiced_aggregated`;            # ??
  36. TRUNCATE `#_sales_invoiced_aggregated_order`;        # ??
  37. TRUNCATE `#_log_quote`;
  38.  
  39. ALTER TABLE `#_sales_flat_creditmemo_comment` AUTO_INCREMENT=1;
  40. ALTER TABLE `#_sales_flat_creditmemo_grid` AUTO_INCREMENT=1;
  41. ALTER TABLE `#_sales_flat_creditmemo_item` AUTO_INCREMENT=1;
  42. ALTER TABLE `#_sales_flat_invoice` AUTO_INCREMENT=1;
  43. ALTER TABLE `#_sales_flat_invoice_comment` AUTO_INCREMENT=1;
  44. ALTER TABLE `#_sales_flat_invoice_grid` AUTO_INCREMENT=1;
  45. ALTER TABLE `#_sales_flat_invoice_item` AUTO_INCREMENT=1;
  46. ALTER TABLE `#_sales_flat_order` AUTO_INCREMENT=1;
  47. ALTER TABLE `#_sales_flat_order_address` AUTO_INCREMENT=1;
  48. ALTER TABLE `#_sales_flat_order_grid` AUTO_INCREMENT=1;
  49. ALTER TABLE `#_sales_flat_order_item` AUTO_INCREMENT=1;
  50. ALTER TABLE `#_sales_flat_order_payment` AUTO_INCREMENT=1;
  51. ALTER TABLE `#_sales_flat_order_status_history` AUTO_INCREMENT=1;
  52. ALTER TABLE `#_sales_flat_quote` AUTO_INCREMENT=1;
  53. ALTER TABLE `#_sales_flat_quote_address` AUTO_INCREMENT=1;
  54. ALTER TABLE `#_sales_flat_quote_address_item` AUTO_INCREMENT=1;
  55. ALTER TABLE `#_sales_flat_quote_item` AUTO_INCREMENT=1;
  56. ALTER TABLE `#_sales_flat_quote_item_option` AUTO_INCREMENT=1;
  57. ALTER TABLE `#_sales_flat_quote_payment` AUTO_INCREMENT=1;
  58. ALTER TABLE `#_sales_flat_quote_shipping_rate` AUTO_INCREMENT=1;
  59. ALTER TABLE `#_sales_flat_shipment` AUTO_INCREMENT=1;
  60. ALTER TABLE `#_sales_flat_shipment_comment` AUTO_INCREMENT=1;
  61. ALTER TABLE `#_sales_flat_shipment_grid` AUTO_INCREMENT=1;
  62. ALTER TABLE `#_sales_flat_shipment_item` AUTO_INCREMENT=1;
  63. ALTER TABLE `#_sales_flat_shipment_track` AUTO_INCREMENT=1;
  64. ALTER TABLE `#_sales_invoiced_aggregated` AUTO_INCREMENT=1;
  65. ALTER TABLE `#_sales_invoiced_aggregated_order` AUTO_INCREMENT=1;
  66. ALTER TABLE `#_log_quote` AUTO_INCREMENT=1;
  67.  
  68. #########################################
  69. # DOWNLOADABLE PURCHASED
  70. #########################################
  71. TRUNCATE `#_downloadable_link_purchased`;
  72. TRUNCATE `#_downloadable_link_purchased_item`;
  73.  
  74. ALTER TABLE `#_downloadable_link_purchased` AUTO_INCREMENT=1;
  75. ALTER TABLE `#_downloadable_link_purchased_item` AUTO_INCREMENT=1;
  76.  
  77. #########################################
  78. # RESET ID COUNTERS
  79. #########################################
  80. TRUNCATE `#_eav_entity_store`;
  81. ALTER TABLE  `#_eav_entity_store` AUTO_INCREMENT=1;
  82.  
  83.  
  84. ##############################
  85. # CUSTOMER RELATED TABLES
  86. ##############################
  87. TRUNCATE `#_customer_address_entity`;
  88. TRUNCATE `#_customer_address_entity_datetime`;
  89. TRUNCATE `#_customer_address_entity_decimal`;
  90. TRUNCATE `#_customer_address_entity_int`;
  91. TRUNCATE `#_customer_address_entity_text`;
  92. TRUNCATE `#_customer_address_entity_varchar`;
  93. TRUNCATE `#_customer_entity`;
  94. TRUNCATE `#_customer_entity_datetime`;
  95. TRUNCATE `#_customer_entity_decimal`;
  96. TRUNCATE `#_customer_entity_int`;
  97. TRUNCATE `#_customer_entity_text`;
  98. TRUNCATE `#_customer_entity_varchar`;
  99. TRUNCATE `#_tag`;
  100. TRUNCATE `#_tag_relation`;
  101. TRUNCATE `#_tag_summary`;
  102. TRUNCATE `#_tag_properties`;            ## CHECK ME
  103. TRUNCATE `#_wishlist`;
  104. TRUNCATE `#_log_customer`;
  105.  
  106. ALTER TABLE `#_customer_address_entity` AUTO_INCREMENT=1;
  107. ALTER TABLE `#_customer_address_entity_datetime` AUTO_INCREMENT=1;
  108. ALTER TABLE `#_customer_address_entity_decimal` AUTO_INCREMENT=1;
  109. ALTER TABLE `#_customer_address_entity_int` AUTO_INCREMENT=1;
  110. ALTER TABLE `#_customer_address_entity_text` AUTO_INCREMENT=1;
  111. ALTER TABLE `#_customer_address_entity_varchar` AUTO_INCREMENT=1;
  112. ALTER TABLE `#_customer_entity` AUTO_INCREMENT=1;
  113. ALTER TABLE `#_customer_entity_datetime` AUTO_INCREMENT=1;
  114. ALTER TABLE `#_customer_entity_decimal` AUTO_INCREMENT=1;
  115. ALTER TABLE `#_customer_entity_int` AUTO_INCREMENT=1;
  116. ALTER TABLE `#_customer_entity_text` AUTO_INCREMENT=1;
  117. ALTER TABLE `#_customer_entity_varchar` AUTO_INCREMENT=1;
  118. ALTER TABLE `#_tag` AUTO_INCREMENT=1;
  119. ALTER TABLE `#_tag_relation` AUTO_INCREMENT=1;
  120. ALTER TABLE `#_tag_summary` AUTO_INCREMENT=1;
  121. ALTER TABLE `#_tag_properties` AUTO_INCREMENT=1;
  122. ALTER TABLE `#_wishlist` AUTO_INCREMENT=1;
  123. ALTER TABLE `#_log_customer` AUTO_INCREMENT=1;
  124.  
  125.  
  126. ##############################
  127. # ADDITIONAL LOGS
  128. ##############################
  129. TRUNCATE `#_log_url`;
  130. TRUNCATE `#_log_url_info`;
  131. TRUNCATE `#_log_visitor`;
  132. TRUNCATE `#_log_visitor_info`;
  133. TRUNCATE `#_report_event`;
  134. TRUNCATE `#_report_viewed_product_index`;
  135. TRUNCATE `#_sendfriend_log`;
  136. ### ??? TRUNCATE `#_log_summary`
  137.  
  138. ALTER TABLE `#_log_url` AUTO_INCREMENT=1;
  139. ALTER TABLE `#_log_url_info` AUTO_INCREMENT=1;
  140. ALTER TABLE `#_log_visitor` AUTO_INCREMENT=1;
  141. ALTER TABLE `#_log_visitor_info` AUTO_INCREMENT=1;
  142. ALTER TABLE `#_report_event` AUTO_INCREMENT=1;
  143. ALTER TABLE `#_report_viewed_product_index` AUTO_INCREMENT=1;
  144. ALTER TABLE `#_sendfriend_log` AUTO_INCREMENT=1;
  145. ### ??? ALTER TABLE `#_log_summary` AUTO_INCREMENT=1;
  146.  
  147. SET FOREIGN_KEY_CHECKS=1;

 

 

 

Revisions

Revision Differences

February 25, 2015 @ 09:56:35Current Revision
Content
Unchanged: <p style="margin: 0px 0px 1em; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">Unchanged: <p style="margin: 0px 0px 1em; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">
Unchanged: <strong style="margin: 0px; padding: 0px;">Last updated for Magento CE 1.4.1.1</strong>Unchanged: <strong style="margin: 0px; padding: 0px;">Last updated for Magento CE 1.4.1.1</strong>
Unchanged: </p>Unchanged: </p>
Unchanged: <p style="margin: 0px 0px 1em; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">Unchanged: <p style="margin: 0px 0px 1em; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">
Unchanged: This is a work-in-progress to assemble and keep current, the&nbsp;<acronym style="margin: 0px; padding: 0px; cursor: help; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: rgb(0, 0, 0);" title="Structured Query Language">SQL< /acronym>&nbsp;required to perform these actions which are currently not part of the Magento core package but which are often useful for testing and debugging.Unchanged: This is a work-in-progress to assemble and keep current, the&nbsp;<acronym style="margin: 0px; padding: 0px; cursor: help; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: rgb(0, 0, 0);" title="Structured Query Language">SQL< /acronym>&nbsp;required to perform these actions which are currently not part of the Magento core package but which are often useful for testing and debugging.
Unchanged: </p>Unchanged: </p>
Unchanged: <div class="level1" style="margin: 0px 0px 0px 3px; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">Unchanged: <div class="level1" style="margin: 0px 0px 0px 3px; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">
Unchanged: <p style="margin: 0px 0px 1em; padding: 0px;">Unchanged: <p style="margin: 0px 0px 1em; padding: 0px;">
Unchanged: <strong style="margin: 0px; padding: 0px;">Remember to back up your database before using any of these scripts!</strong>Unchanged: <strong style="margin: 0px; padding: 0px;">Remember to back up your database before using any of these scripts!</strong>
Unchanged: </p>Unchanged: </p>
Unchanged: </div>Unchanged: </div>
Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="margin: 0px 0px 1em; padding: 0px; width: 669.599975585938px; font-size: 12px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="margin: 0px 0px 1em; padding: 0px; width: 669.599975585938px; font-size: 12px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">
Unchanged: <tbody style="margin: 0px; padding: 0px;">Unchanged: <tbody style="margin: 0px; padding: 0px;">
Unchanged: <tr style="margin: 0px; padding: 0px;">Unchanged: <tr style="margin: 0px; padding: 0px;">
Unchanged: <td class="wiki-header" style="margin: 5px 0px 10px; padding: 0px; vertical-align: top;">Unchanged: <td class="wiki-header" style="margin: 5px 0px 10px; padding: 0px; vertical-align: top;">
Unchanged: <h2 style="margin: 0px; padding: 0px; line-height: 1.2em; font-size: 1.3em;">Unchanged: <h2 style="margin: 0px; padding: 0px; line-height: 1.2em; font-size: 1.3em;">
Unchanged: <a id="delete_all_ order_customer_data" name="delete_ all_order_customer_data" style="margin: 0px; padding: 0px; font-size: 14px; font-weight: bold; color: rgb(223, 59, 2) !important;">Delete *All* Order &amp; Customer Data</a>Unchanged: <a id="delete_all_ order_customer_data" name="delete_ all_order_customer_data" style="margin: 0px; padding: 0px; font-size: 14px; font-weight: bold; color: rgb(223, 59, 2) !important;">Delete *All* Order &amp; Customer Data</a>
Unchanged: </h2>Unchanged: </h2>
Unchanged: </td>Unchanged: </td>
Unchanged: <td style="margin: 0px; padding: 0px; vertical-align: top;" width="50">Unchanged: <td style="margin: 0px; padding: 0px; vertical-align: top;" width="50">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: <div class="level2" style="margin: 0px 0px 0px 3px; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">Unchanged: <div class="level2" style="margin: 0px 0px 0px 3px; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);">
Unchanged: <div class="code mysql" style="margin: 0px 0px 5px; padding: 0px; color: rgb(113, 113, 113); font-family: monospace; background-color: rgb(247, 249, 250);">Unchanged: <div class="code mysql" style="margin: 0px 0px 5px; padding: 0px; color: rgb(113, 113, 113); font-family: monospace; background-color: rgb(247, 249, 250);">
Unchanged: <div class="code_bg" style="margin: 0px; padding: 0px; border: 1px dashed rgb(170, 170, 170); overflow-y: auto; background-image: url(http://www.magentocommerce.com/ wiki/lib/tpl/ default/images/ code-line.gif); background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0% 50%; background-repeat: repeat-y;">Unchanged: <div class="code_bg" style="margin: 0px; padding: 0px; border: 1px dashed rgb(170, 170, 170); overflow-y: auto; background-image: url(http://www.magentocommerce.com/ wiki/lib/tpl/ default/images/ code-line.gif); background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0% 50%; background-repeat: repeat-y;">
Unchanged: <ol style="margin: 0px 0px 0.5em 1.5em; padding: 6px 10px; font-weight: bold; background: url(http://www.magentocommerce.com/ wiki/lib/tpl/ default/images/ code-line.gif) 0% 50% repeat-y;">Unchanged: <ol style="margin: 0px 0px 0.5em 1.5em; padding: 6px 10px; font-weight: bold; background: url(http://www.magentocommerce.com/ wiki/lib/tpl/ default/images/ code-line.gif) 0% 50% repeat-y;">
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># Magento CE 1.4.1.1</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># Magento CE 1.4.1.1</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># Be sure to replace &quot;#_&quot; with your table prefix</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># Be sure to replace &quot;#_&quot; with your table prefix</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">SET</span> &nbsp;FOREIGN_ KEY_CHECKS=<span class="nu0" style="margin: 0px; padding: 0px; color: rgb(204, 102, 204);">0</span>;Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">SET</span> &nbsp;FOREIGN_ KEY_CHECKS=<span class="nu0" style="margin: 0px; padding: 0px; color: rgb(204, 102, 204);">0</span>;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># SALES RELATED TABLES</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># SALES RELATED TABLES</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_ comment`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_ comment`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_ grid`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_ grid`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_ item`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_ item`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_ comment`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_ comment`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_ grid`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_ grid`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_ item`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_ item`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_address`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_address`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_grid`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_grid`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_item`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_item`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_payment`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_payment`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_status_ history`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_status_ history`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address_ item`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address_ item`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item_ option`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item_ option`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_payment`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_payment`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_shipping_ rate`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_shipping_ rate`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ comment`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ comment`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ grid`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ grid`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ item`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ item`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ track`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_ track`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated`;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # ??</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated`;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # ??</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated_ order`;&nbsp; &nbsp; &nbsp; &nbsp; # ??</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated_ order`;&nbsp; &nbsp; &nbsp; &nbsp; # ??</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ quote`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ quote`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_comment` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_comment` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_grid` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_grid` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_item` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_creditmemo_item` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_comment` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_comment` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_grid` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_grid` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_item` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_invoice_item` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_flat_order` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_flat_order` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_address` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_address` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_grid` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_grid` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_item` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_item` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_payment` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_payment` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_status_history` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_order_status_history` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_flat_quote` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_flat_quote` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address_item` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_address_item` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item_option` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_item_option` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_payment` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_payment` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_shipping_rate` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_quote_shipping_rate` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_comment` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_comment` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_grid` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_grid` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_item` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_item` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_track` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ flat_shipment_track` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated_order` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sales_ invoiced_aggregated_order` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_quote` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_quote` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># DOWNLOADABLE PURCHASED</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># DOWNLOADABLE PURCHASED</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased_ item`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased_ item`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased_item` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_downloadable_ link_purchased_item` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># RESET ID COUNTERS</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># RESET ID COUNTERS</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#########################################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_eav_ entity_store`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_eav_ entity_store`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp; `<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_eav_ entity_store` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp; `<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_eav_ entity_store` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># CUSTOMER RELATED TABLES</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># CUSTOMER RELATED TABLES</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ datetime`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ datetime`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ decimal`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ decimal`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ int`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ int`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ text`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ text`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ varchar`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_ varchar`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_datetime`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_datetime`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_decimal`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_decimal`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_int`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_int`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_text`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_text`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_varchar`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_varchar`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_ relation`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_ relation`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_ summary`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_ summary`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_ properties`;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ## CHECK ME</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_ properties`;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ## CHECK ME</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_wishlist`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_wishlist`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ customer`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ customer`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_datetime` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_datetime` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_decimal` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_decimal` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_int` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_int` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_text` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_text` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_varchar` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ address_entity_varchar` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_entity` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_entity` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_datetime` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_datetime` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_decimal` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_decimal` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_entity_int` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_entity_int` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_text` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_text` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_varchar` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_customer_ entity_varchar` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_relation` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_relation` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_summary` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_summary` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_properties` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_tag_properties` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_wishlist` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_wishlist` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_customer` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_customer` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># ADDITIONAL LOGS</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;"># ADDITIONAL LOGS</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">##############################</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ url`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ url`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ url_info`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ url_info`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ visitor`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ visitor`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ visitor_info`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ visitor_info`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_ event`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_ event`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_ viewed_product_ index`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_ viewed_product_ index`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sendfriend_ log`;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">TRUNCATE< /span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sendfriend_ log`;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">### ??? TRUNCATE `#_log_summary`</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">### ??? TRUNCATE `#_log_summary`</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_url` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_url` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_url_info` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_url_info` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_visitor` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_visitor` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ visitor_info` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_log_ visitor_info` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_event` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_event` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_ viewed_product_index` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_report_ viewed_product_index` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sendfriend_log` AUTO_INCREMENT=1;</span>Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">ALTER TABLE</span>&nbsp;`<span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">#_sendfriend_log` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">### ??? ALTER TABLE `#_log_summary` AUTO_INCREMENT=1;</span>Unchanged: <span class="co2" style="margin: 0px; padding: 0px; color: rgb(128, 128, 128); font-style: italic;">### ??? ALTER TABLE `#_log_summary` AUTO_INCREMENT=1;</span>
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">Unchanged: <li class="li1" style="margin: 0px 0px 0px 20px; padding: 0px 0px 0px 10px; list-style: decimal; white-space: nowrap; color: rgb(136, 136, 136);">
Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">Unchanged: <div class="de1" style="margin: 0px; padding: 0px; color: rgb(99, 140, 168);">
Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">SET</span> &nbsp;FOREIGN_ KEY_CHECKS=<span class="nu0" style="margin: 0px; padding: 0px; color: rgb(204, 102, 204);">1</span>;Unchanged: <span class="kw1" style="margin: 0px; padding: 0px; color: rgb(177, 177, 0);">SET</span> &nbsp;FOREIGN_ KEY_CHECKS=<span class="nu0" style="margin: 0px; padding: 0px; color: rgb(204, 102, 204);">1</span>;
Unchanged: </div>Unchanged: </div>
Unchanged: </li>Unchanged: </li>
Unchanged: </ol>Unchanged: </ol>
Unchanged: </div>Unchanged: </div>
 Added: <p>
 Added: &nbsp;
 Added: </p>
Deleted: Added:
Unchanged: </div>Unchanged: </div>
Unchanged: <p>Unchanged: <p>
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </p>Unchanged: </p>
Unchanged: <p>Unchanged: <p>
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </p>Unchanged: </p>
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Deleted: <p style="margin: 0px 0px 1em; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);"> 
Deleted: &nbsp; 
Deleted: </p> 
Deleted: <div class="crayon-line" id="crayon-54def17866bcd764624433-3" style="margin: 0px; padding: 0px 5px; border: 0px; font-family: Monaco, MonacoRegular, 'Courier New', monospace; font-size: 12px; font-stretch: inherit; line-height: 15px; vertical-align: baseline; height: inherit; color: rgb(255, 255, 255); white-space: pre; background: 0px 50% rgb(45, 45, 45);"> 
Deleted: <p style="margin: 0px 0px 1em; padding: 0px; color: rgb(85, 85, 85); font-family: Arial, sans-serif; font-size: 12px; line-height: 18.6000003814697px; background-color: rgb(254, 254, 254);"> 
Deleted: &nbsp; 
Deleted: </p> 
Deleted: </div> 

Note: Spaces may be added to comparison text to allow better line wrapping.

No comments yet.

Leave a Reply