db_schema.xml 1.1 KB

123456789101112131415161718192021222324
  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="queue_lock" resource="default" engine="innodb"
  11. comment="Messages that were processed are inserted here to be locked.">
  12. <column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true"
  13. comment="Message ID"/>
  14. <column xsi:type="varchar" name="message_code" nullable="false" length="255" default="" comment="Message Code"/>
  15. <column xsi:type="timestamp" name="created_at" on_update="true" nullable="false" default="CURRENT_TIMESTAMP"
  16. comment="Created At"/>
  17. <constraint xsi:type="primary" referenceId="PRIMARY">
  18. <column name="id"/>
  19. </constraint>
  20. <constraint xsi:type="unique" referenceId="QUEUE_LOCK_MESSAGE_CODE">
  21. <column name="message_code"/>
  22. </constraint>
  23. </table>
  24. </schema>