db_schema.xml 1.2 KB

1234567891011121314151617181920212223242526
  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="inventory_reservation" resource="default" engine="innodb">
  11. <column xsi:type="int" name="reservation_id" padding="10" unsigned="true" nullable="false" identity="true"/>
  12. <column xsi:type="int" name="stock_id" padding="10" unsigned="true" nullable="false" identity="false"/>
  13. <column xsi:type="varchar" name="sku" nullable="false" length="64"/>
  14. <column xsi:type="decimal" name="quantity" scale="4" precision="10" unsigned="false" nullable="false"
  15. default="0"/>
  16. <column xsi:type="varchar" name="metadata" nullable="true" length="255"/>
  17. <constraint xsi:type="primary" referenceId="PRIMARY">
  18. <column name="reservation_id"/>
  19. </constraint>
  20. <index referenceId="INVENTORY_RESERVATION_STOCK_ID_SKU_QUANTITY" indexType="btree">
  21. <column name="stock_id"/>
  22. <column name="sku"/>
  23. <column name="quantity"/>
  24. </index>
  25. </table>
  26. </schema>