diff options
author | ivan <ivan> | 1998-08-13 04:15:02 +0000 |
---|---|---|
committer | ivan <ivan> | 1998-08-13 04:15:02 +0000 |
commit | c3d0d65a26090cf6d7a5bd90abc5c7d256b19d37 (patch) | |
tree | 8388087c94e8ec90b7ea13f9b17b113896c8a753 /htdocs/docs/upgrade.html | |
parent | 9e5d78000590c1d114bf833ed20c6c7def4a8767 (diff) |
Initial revision
Diffstat (limited to 'htdocs/docs/upgrade.html')
-rw-r--r-- | htdocs/docs/upgrade.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/htdocs/docs/upgrade.html b/htdocs/docs/upgrade.html new file mode 100644 index 000000000..d2201f601 --- /dev/null +++ b/htdocs/docs/upgrade.html @@ -0,0 +1,24 @@ +<head> + <title>Upgrading to 1.1.x</title> +</head> +<body> +<h1>Upgrading to 1.1.x</h1> +<ul> + <li>Back up your data and current Freeside installation. + <li>Unpack a copy of the 1.0.0 distribution in a separate location. + <li>Diff your current installation against the 1.0.0 distribution. + <li>Apply all the diffs you found above, if applicable. + <li>Apply (at least) the following changes to your database: +<pre> +ALTER TABLE cust_main CHANGE ss ss char(11) NULL; +ALTER TABLE cust_main CHANGE day daytime varchar(20) NULL; +ALTER TABLE svc_acct CHANGE password _password varchar(25) NOT NULL; +ALTER TABLE part_svc CHANGE svc_acct__password svc_acct___password varchar(25) NULL; +ALTER TABLE part_svc CHANGE svc_acct__password_flag svc_acct___password_flag char(1) NULL; +ALTER TABLE agent_type CHANGE type atype varchar(80) NOT NULL; +</pre> + <li>Optionally change the field lengths and types to match a 1.1.x install; see `bin/fs-setup'. + <li>Create the necessary <a href="config.html">configuration files</a>, + <li>Copy or symlink htdocs and site_perl to the new 1.1.x copies. + <li>Run bin/dbdef-create. This file uses MySQL-specific syntax. If you are running a different database engine you will need to modify it slightly. +</body> |