Nolwennig-Jeulin
Nolwennig-Jeulin
Change value_id column to be unsigned in db_schema.xml to prevent `SQLSTATE[22003]: Numeric value out of range: Out of range value for column 'value_id'` ``` SHOW TABLE STATUS LIKE 'catalog_product_entity_varchar' \G...
Hi, I wonder why in `magento/module-catalog/etc/db_schema.xml` the type for column `value_id primary key` is : > `INT(11)` instead of `INT(11) UNSIGNED` ? I found that because we occur `SQLSTATE[22003]: Numeric...
Hi, In ou production database, we found that the `negotiable_quote` table takes up a significant amount of space, almost 3 GB. ``` MariaDB [information_schema]> SELECT TABLE_NAME AS `Table`, -> ((DATA_LENGTH...
Hi, I wonder why Plugin/RouteParamsResolver getValue scope by store then that impossible to set store_view scope for field id="`use_store`" value ? https://github.com/magento/magento2/blob/a947b306335294f61ab633ef75d9047c29988a9b/app/code/Magento/Backend/etc/adminhtml/system.xml#L511 `` https://github.com/magento/magento2/blob/a947b306335294f61ab633ef75d9047c29988a9b/app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php#L77 ``` $useStoreInUrl = $this->scopeConfig->getValue( Store::XML_PATH_STORE_IN_URL, -->...