db_schema.xml 1.4 KB

12345678910111213141516171819202122232425262728
  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="release_notification_viewer_log" resource="default" engine="innodb"
  11. comment="Release Notification Viewer Log Table">
  12. <column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true"
  13. comment="Log ID"/>
  14. <column xsi:type="int" name="viewer_id" padding="10" unsigned="true" nullable="false" identity="false"
  15. comment="Viewer admin user ID"/>
  16. <column xsi:type="varchar" name="last_view_version" nullable="false" length="16"
  17. comment="Viewer last view on product version"/>
  18. <constraint xsi:type="primary" referenceId="PRIMARY">
  19. <column name="id"/>
  20. </constraint>
  21. <constraint xsi:type="foreign" referenceId="RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID_ADMIN_USER_USER_ID"
  22. table="release_notification_viewer_log" column="viewer_id" referenceTable="admin_user"
  23. referenceColumn="user_id" onDelete="CASCADE"/>
  24. <constraint xsi:type="unique" referenceId="RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID">
  25. <column name="viewer_id"/>
  26. </constraint>
  27. </table>
  28. </schema>