[dw-free] Fix whitespace.
[commit: http://hg.dwscoalition.org/dw-free/rev/55b77d726f86]
Fix whitespace.
Patch by
fu.
Files modified:
Fix whitespace.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- bin/upgrading/update-db-general.pl
-------------------------------------------------------------------------------- diff -r 352f57a7ecbf -r 55b77d726f86 bin/upgrading/update-db-general.pl --- a/bin/upgrading/update-db-general.pl Tue Sep 07 16:17:49 2010 +0800 +++ b/bin/upgrading/update-db-general.pl Tue Sep 07 16:24:26 2010 +0800 @@ -3880,20 +3880,20 @@ EOF "ALTER TABLE externalaccount ADD COLUMN recordlink enum('1','0') NOT NULL default '0'"); } - unless ( column_type( 'import_data', 'options' ) ) { - do_alter( 'import_data', - q{ALTER TABLE import_data ADD COLUMN options BLOB} ); - } + unless ( column_type( 'import_data', 'options' ) ) { + do_alter( 'import_data', + q{ALTER TABLE import_data ADD COLUMN options BLOB} ); + } - unless ( column_type( 'moods', 'weight' ) ) { - do_alter( 'moods', - q{ALTER TABLE moods ADD COLUMN weight tinyint unsigned default NULL} ); - } + unless ( column_type( 'moods', 'weight' ) ) { + do_alter( 'moods', + q{ALTER TABLE moods ADD COLUMN weight tinyint unsigned default NULL} ); + } - unless ( column_type( 'poll2', 'isanon' ) ) { - do_alter( 'poll2', - "ALTER TABLE poll2 ADD COLUMN isanon enum('yes','no') NOT NULL default 'no'"); - } + unless ( column_type( 'poll2', 'isanon' ) ) { + do_alter( 'poll2', + "ALTER TABLE poll2 ADD COLUMN isanon enum('yes','no') NOT NULL default 'no'"); + } }); --------------------------------------------------------------------------------