db_schema.xml 1.1 KB

12345678910111213141516171819202122
  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_stock_sales_channel" resource="default" engine="innodb">
  11. <column xsi:type="varchar" name="type" nullable="false" length="64"/>
  12. <column xsi:type="varchar" name="code" nullable="false" length="64"/>
  13. <column xsi:type="int" name="stock_id" padding="10" unsigned="true" nullable="false" identity="false"/>
  14. <constraint xsi:type="foreign" referenceId="INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID"
  15. table="inventory_stock_sales_channel" column="stock_id" referenceTable="inventory_stock"
  16. referenceColumn="stock_id" onDelete="CASCADE"/>
  17. <constraint xsi:type="primary" referenceId="IDX_PRIMARY">
  18. <column name="type"/>
  19. <column name="code"/>
  20. </constraint>
  21. </table>
  22. </schema>