[dw-free] Links to cross-posted entries
[commit: http://hg.dwscoalition.org/dw-free/rev/6ab8721bd766]
http://bugs.dwscoalition.org/show_bug.cgi?id=2361
Fix the alter database call for clustered setups. (e.g., production).
Patch by
exor674.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2361
Fix the alter database call for clustered setups. (e.g., production).
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- bin/upgrading/update-db-general.pl
-------------------------------------------------------------------------------- diff -r 529764d8e9d7 -r 6ab8721bd766 bin/upgrading/update-db-general.pl --- a/bin/upgrading/update-db-general.pl Wed Jun 02 20:20:51 2010 +0800 +++ b/bin/upgrading/update-db-general.pl Fri Jun 04 11:26:45 2010 +0800 @@ -3873,7 +3873,7 @@ EOF } unless ( column_type( 'externalaccount', 'recordlink' ) ) { - do_alter( 'xpost_recordlink', + do_alter( 'externalaccount', "ALTER TABLE externalaccount ADD COLUMN recordlink enum('1','0') NOT NULL default '0'"); } --------------------------------------------------------------------------------