db_schema.xml 713 B

1234567891011121314151617
  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_shipment_source" resource="default" engine="innodb">
  11. <column xsi:type="int" name="shipment_id" padding="10" unsigned="true" nullable="false" identity="false" />
  12. <column xsi:type="varchar" name="source_code" nullable="false" />
  13. <constraint xsi:type="primary" referenceId="PRIMARY">
  14. <column name="shipment_id"/>
  15. </constraint>
  16. </table>
  17. </schema>