db_schema.xml 731 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="test_table" resource="default" comment="Test Table">
  11. <column xsi:type="int" name="page_id" nullable="false" />
  12. <column xsi:type="varchar" name="email" nullable="false" />
  13. <column xsi:type="varchar" name="title" />
  14. <constraint xsi:type="primary" referenceId="PRIMARY">
  15. <column name="page_id" />
  16. <column name="email" />
  17. </constraint>
  18. </table>
  19. </schema>