Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Increase Product name character length


mnkumar

Recommended Posts

  • 1 month later...
  • 3 months later...

DROP TABLE IF EXISTS products_description;

CREATE TABLE products_description (

products_id int NOT NULL auto_increment,

language_id int NOT NULL default '1',

products_name varchar(64) NOT NULL default '',

products_description text,

products_url varchar(255) default NULL,

products_viewed int(5) default '0',

PRIMARY KEY (products_id,language_id),

KEY products_name (products_name)

);

is the schema of table so product length upto 64 char will be taken care.

 

if You need more length then modify table products_description field products_name

 

Satish Mantri

Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site.

 

Check My About US For who am I and what My company does.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...