Skip to content

Commit

Permalink
Add instructions on upgrading from svn-003 to svn-009
Browse files Browse the repository at this point in the history
  • Loading branch information
jokajak committed Oct 30, 2010
1 parent 74ca8f0 commit dde7337
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions UPGRADE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
These instructions are for migrating from svn-003 to svn-009.

You should perform a backup of your database prior to running these commands.

Log in to the mysql database as a user who has ALTER privileges on the
clipperz database.

start transaction;
ALTER TABLE record MODIFY COLUMN data LONGTEXT NOT NULL;
ALTER TABLE user MODIFY COLUMN header LONGTEXT NOT NULL;
ALTER TABLE user MODIFY COLUMN statistics LONGTEXT NOT NULL;
ALTER TABLE recordversion MODIFY COLUMN header LONGTEXT NOT NULL;
ALTER TABLE recordversion MODIFY COLUMN data LONGTEXT NOT NULL;
commit;

After running those commands the mysql tables should be updated to the new
database schema.

0 comments on commit dde7337

Please sign in to comment.