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.
 
 
 
 
 
 

25 line
1.2 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" xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
  9. <table name="media_content_asset" resource="default" engine="innodb" comment="Relation between media content and media asset">
  10. <column xsi:type="int" name="asset_id" unsigned="true" nullable="false" comment="Entity ID"/>
  11. <column xsi:type="varchar" length="255" name="entity_type" nullable="false" comment="Content type"/>
  12. <column xsi:type="varchar" length="255" name="entity_id" nullable="false" comment="Content entity id"/>
  13. <column xsi:type="varchar" length="255" name="field" nullable="false" comment="Content field"/>
  14. <constraint xsi:type="primary" referenceId="PRIMARY">
  15. <column name="entity_type"/>
  16. <column name="entity_id"/>
  17. <column name="field"/>
  18. <column name="asset_id"/>
  19. </constraint>
  20. <index referenceId="MEDIA_CONTENT_ASSET_ASSET_ID" indexType="btree">
  21. <column name="asset_id"/>
  22. </index>
  23. </table>
  24. </schema>