summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-15 14:55:11 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-15 14:55:11 +0000
commit3f01e79ae22d82a6b601e8c4227fc680b0159862 (patch)
tree84021b62b41567122ca1949ac6390702d34ae29a /modules
parentd8c18ac010f925b9056daa0833f6d7a7fc34c0a8 (diff)
downloadbrdo-3f01e79ae22d82a6b601e8c4227fc680b0159862.tar.gz
brdo-3f01e79ae22d82a6b601e8c4227fc680b0159862.tar.bz2
#191282 follow up by bjaspan: fix inconsistent database schema introduced by #191282 previously
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.install1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 2529c8123..625c2e671 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -4534,6 +4534,7 @@ function system_update_6036() {
*/
function system_update_6037() {
$ret = array();
+ db_change_field($ret, 'blocks', 'region', 'region', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''));
$ret[] = update_sql("UPDATE {blocks} SET region = '' WHERE status = 0");
return $ret;
}