View Single Post
Old April 17th, 2009, 01:13 PM   #9 (permalink)
snoopy5
Ultimate Member
Verified Customer
 
Join Date: Sep 2002
Posts: 1,172
Quote:
Originally Posted by Chuck S View Post
The regular extra fields are VARCHAR 64 character fields. You would need to modify those to be bigger like this

ALTER TABLE rp_products CHANGE extra1 extra1 VARCHAR(255) DEFAULT NULL;
ALTER TABLE rp_products CHANGE extra2 extra2 VARCHAR(255) DEFAULT NULL;
ALTER TABLE rp_products CHANGE extra3 extra3 VARCHAR(255) DEFAULT NULL;
ALTER TABLE rp_products CHANGE extra4 extra4 VARCHAR(255) DEFAULT NULL;
ALTER TABLE rp_products CHANGE extra5 extra5 VARCHAR(255) DEFAULT NULL;
ALTER TABLE rp_products CHANGE extra6 extra6 VARCHAR(255) DEFAULT NULL;
o.k., thanks.

If I would change this and next year a new RP version comes out, would this then give problems with the upgarde to the new version?
snoopy5 is offline   Reply With Quote