[freeside-commits]
freeside/httemplate/docs upgrade10.html, 1.60.2.1, 1.60.2.2
Ivan,,,
ivan at wavetail.420.am
Tue Aug 22 05:26:16 PDT 2006
Update of /home/cvs/cvsroot/freeside/httemplate/docs
In directory wavetail:/tmp/cvs-serv26297
Modified Files:
Tag: FREESIDE_1_5_BRANCH
upgrade10.html
Log Message:
quick pg 8.1 patch to 1.5.8 upgrade instructions from Damon Vincent
Index: upgrade10.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/docs/Attic/upgrade10.html,v
retrieving revision 1.60.2.1
retrieving revision 1.60.2.2
diff -u -d -r1.60.2.1 -r1.60.2.2
--- upgrade10.html 8 Feb 2006 03:49:32 -0000 1.60.2.1
+++ upgrade10.html 22 Aug 2006 12:26:14 -0000 1.60.2.2
@@ -42,12 +42,17 @@
DROP INDEX cust_bill_pkg1;
</pre>
- <li>On recent Pg versions:
+ <li>On Pg 8.1 and newer:
+<pre>
+ALTER TABLE cust_main ALTER COLUMN payinfo TYPE varchar(512) NULL;
+ALTER TABLE h_cust_main ALTER COLUMN payinfo TYPE varchar(512) NULL;
+</pre>
+ <li>On Pg 7.4-8.0 (7.3-8.0?):
<pre>
ALTER TABLE cust_main ALTER COLUMN payinfo varchar(512) NULL;
ALTER TABLE h_cust_main ALTER COLUMN payinfo varchar(512) NULL;
</pre>
-On older Pg versions that don't support altering columns directly, you will need to dump the database, edit the schema definitions in the dump file, and reload.
+Pg versions 7.3 (7.2?) and older don't support altering columns directly. you will need to dump the database, edit the schema definitions in the dump file, and reload.
<li>On recent Pg versions:
<pre>
More information about the freeside-commits
mailing list