You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
1.0 KiB

  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="admin_analytics_usage_version_log" resource="default" engine="innodb"
  11. comment="Admin Notification Viewer Log Table">
  12. <column xsi:type="int" name="id" unsigned="true" nullable="false" identity="true"
  13. comment="Log ID"/>
  14. <column xsi:type="varchar" name="last_viewed_in_version" nullable="false" length="50"
  15. comment="Viewer last viewed on product version"/>
  16. <constraint xsi:type="primary" referenceId="PRIMARY">
  17. <column name="id"/>
  18. </constraint>
  19. <constraint xsi:type="unique" referenceId="ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION">
  20. <column name="last_viewed_in_version"/>
  21. </constraint>
  22. </table>
  23. </schema>