Увеличение макс. значения 65535 в корзине Ubercart

Главные вкладки

Комментарии

Аватар пользователя Nikit Nikit 13 июля 2009 в 12:58

File uc_cart.install

function uc_cart_schema() {
  $schema = array();

  $schema['uc_cart_products'] = array(
    'fields' => array(
...
      'qty' => array(
        'type' => 'int',
        'size' => 'small',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
      ),
// max unsigned smallint = 65535
...
  );

  return $schema;
}

Может еще где есть.