db_schema.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
  10. <table name="importexport_importdata" resource="default" engine="innodb" comment="Import Data Table">
  11. <column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true" comment="Id"/>
  12. <column xsi:type="varchar" name="entity" nullable="false" length="50" comment="Entity"/>
  13. <column xsi:type="varchar" name="behavior" nullable="false" length="10" default="append" comment="Behavior"/>
  14. <column xsi:type="longtext" name="data" nullable="true" comment="Data"/>
  15. <constraint xsi:type="primary" referenceId="PRIMARY">
  16. <column name="id"/>
  17. </constraint>
  18. </table>
  19. <table name="import_history" resource="default" engine="innodb" comment="Import history table">
  20. <column xsi:type="int" name="history_id" padding="10" unsigned="true" nullable="false" identity="true"
  21. comment="History record Id"/>
  22. <column xsi:type="timestamp" name="started_at" on_update="false" nullable="false" default="CURRENT_TIMESTAMP"
  23. comment="Started at"/>
  24. <column xsi:type="int" name="user_id" padding="10" unsigned="true" nullable="false" identity="false" default="0"
  25. comment="User ID"/>
  26. <column xsi:type="varchar" name="imported_file" nullable="true" length="255" comment="Imported file"/>
  27. <column xsi:type="varchar" name="execution_time" nullable="true" length="255" comment="Execution time"/>
  28. <column xsi:type="varchar" name="summary" nullable="true" length="255" comment="Summary"/>
  29. <column xsi:type="varchar" name="error_file" nullable="false" length="255" comment="Imported file with errors"/>
  30. <constraint xsi:type="primary" referenceId="PRIMARY">
  31. <column name="history_id"/>
  32. </constraint>
  33. </table>
  34. </schema>