db_schema.xml 938 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="inventory_geoname" resource="default" engine="innodb">
  11. <column xsi:type="varchar" name="country_code" nullable="false" length="64"/>
  12. <column xsi:type="varchar" name="postcode" nullable="false" length="64"/>
  13. <column xsi:type="varchar" name="city" nullable="false" length="64"/>
  14. <column xsi:type="varchar" name="region" nullable="false" length="64"/>
  15. <column xsi:type="varchar" name="province" nullable="false" length="64"/>
  16. <column xsi:type="double" name="latitude" nullable="false" />
  17. <column xsi:type="double" name="longitude" nullable="false"/>
  18. </table>
  19. </schema>