db_schema.xml 863 B

12345678910111213141516171819
  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_low_stock_notification_configuration" resource="default" engine="innodb">
  11. <column xsi:type="varchar" name="source_code" nullable="false" length="255"/>
  12. <column xsi:type="varchar" name="sku" nullable="false" length="64"/>
  13. <column xsi:type="decimal" name="notify_stock_qty" scale="4" precision="12" unsigned="false" nullable="true"/>
  14. <constraint xsi:type="primary" referenceId="IDX_PRIMARY">
  15. <column name="source_code"/>
  16. <column name="sku"/>
  17. </constraint>
  18. </table>
  19. </schema>