db_schema.xml 739 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="patch_list" resource="default" comment="List of data/schema patches">
  11. <column xsi:type="int" name="patch_id" identity="true" comment="Patch Auto Increment" />
  12. <column xsi:type="varchar" name="patch_name" length="1024" nullable="false" comment="Patch Class Name" />
  13. <constraint xsi:type="primary" referenceId="PRIMARY">
  14. <column name="patch_id" />
  15. </constraint>
  16. </table>
  17. </schema>