There are 2 settings to think about
:
products_quantity_order_min
products_quantity_mixed
If your Products use Attributes, does the 12 minimum allow for a mix of Attributes on a Product or must the Product and Attributes be 12?
Can the customer order:
3 Red 4 Yellow and 5 Green?
This is products_quantity_mixed YES
Or, do they need to order 12 Red or 12 Yellow or 12 Green?
This is products_quantity_mixed NO ...
To update all Products to require a minimum of 12, backup your database ...
Then you can issue this statement in your Tools ... Insert SQL Patch ...
PHP Code:
UPDATE products SET products_quantity_order_min=12;
If all Products can be a mix of Attributes (this includes products without Attributes as well)
PHP Code:
UPDATE products SET products_quantity_mixed=1;
If all Products can NOT be a mix of Attributes (this includes products without Attributes as well)
PHP Code:
UPDATE products SET products_quantity_mixed=0;