25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

24 satır
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>