Search code examples
mysqlwordpresspluginswoocommercesku

WooCommerce SKU characters limit


I have this question about WooCommerce SKU:
Does it have a limit in number of characters? If there is a limit, how to extend it?

Thanks


Solution

  • There is not really a limit as it's stored in WordPress wp_postmeta database table in meta_value column which limitation is 'long text' corresponding to 4GiB (2^32 - 1) characters (see below).

    enter image description here