Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Increase Table Rate Shipping of 255 CHAR


myosc

Recommended Posts

Posted

Hi,

 

Can anybody tell me how I can increase the shipping table so that it can go and read over the 255 CHAR limit?

 

I looked at my tables, is it in configuration_value that I have to do this at?

 

The limit of 255 is not big enough for all of my needs.

 

Thanks for your help

Posted

You can alter the column type to any of the following:

 

BLOB

TEXT

 

A BLOB or TEXT column with a maximum length of 65535 (2^16 - 1) characters.

 

MEDIUMBLOB

MEDIUMTEXT

 

A BLOB or TEXT column with a maximum length of 16777215 (2^24 - 1) characters.

 

LONGBLOB

LONGTEXT

 

A BLOB or TEXT column with a maximum length of 4294967295 (2^32 - 1) characters.

 

For example:

alter table configuration modify configuration_value text not null;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...