db_schema.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132
  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="cron_schedule" resource="default" engine="innodb" comment="Cron Schedule">
  11. <column xsi:type="int" name="schedule_id" padding="10" unsigned="true" nullable="false" identity="true"
  12. comment="Schedule Id"/>
  13. <column xsi:type="varchar" name="job_code" nullable="false" length="255" default="0" comment="Job Code"/>
  14. <column xsi:type="varchar" name="status" nullable="false" length="7" default="pending" comment="Status"/>
  15. <column xsi:type="text" name="messages" nullable="true" comment="Messages"/>
  16. <column xsi:type="timestamp" name="created_at" on_update="false" nullable="false" default="CURRENT_TIMESTAMP"
  17. comment="Created At"/>
  18. <column xsi:type="timestamp" name="scheduled_at" on_update="false" nullable="true" comment="Scheduled At"/>
  19. <column xsi:type="timestamp" name="executed_at" on_update="false" nullable="true" comment="Executed At"/>
  20. <column xsi:type="timestamp" name="finished_at" on_update="false" nullable="true" comment="Finished At"/>
  21. <constraint xsi:type="primary" referenceId="PRIMARY">
  22. <column name="schedule_id"/>
  23. </constraint>
  24. <index referenceId="CRON_SCHEDULE_JOB_CODE" indexType="btree">
  25. <column name="job_code"/>
  26. </index>
  27. <index referenceId="CRON_SCHEDULE_SCHEDULED_AT_STATUS" indexType="btree">
  28. <column name="scheduled_at"/>
  29. <column name="status"/>
  30. </index>
  31. </table>
  32. </schema>