Changes between Version 17 and Version 18 of ToolUpgrade
- Timestamp:
- Oct 8, 2008, 10:00:15 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ToolUpgrade
v17 v18 39 39 $ cd project/html/ops 40 40 }}} 41 41 and look at the file `db_update.php`. This has a number of functions in it with names like 42 42 {{{ 43 43 update_8_05_2005() 44 44 }}} 45 45 Each function performs a particular database update. 46 46 You must perform all updates, in sequence, starting from your last server software upgrade. 47 47 If you are not sure when that was, you can use `mysql` to see that current format of your database. … … 51 51 mysql> explain user; 52 52 }}} 53 To do a particular update, edit `db_update.php` so that (at the bottom) it calls that function. Then do 53 To do a particular update, edit `db_update.php` so that (at the bottom) it calls that function. 54 Then do 54 55 {{{ 55 56 $ php db_update.php 56 57 }}} 57 58 Repeat this for the necessary updates, in increasing chronological order.