moodle16cleanup: blocks/rss_client set the correct column default value

This commit is contained in:
martinlanghoff 2006-05-17 06:35:50 +00:00
parent d7d37bcb60
commit 7f8199c253
2 changed files with 7 additions and 1 deletions

View File

@ -12,6 +12,12 @@ function rss_client_upgrade($oldversion) {
table_column('block_rss_client','description','description','text');
}
if ($oldversion < 2005090201) {
modify_database('', 'ALTER TABLE prefix_block_rss_client
ALTER COLUMN title SET DEFAULT \'\',
ALTER COLUMN description SET DEFAULT \'\'');
}
return true;
}

View File

@ -5,4 +5,4 @@
// database (blocks_version) to determine whether upgrades should
// be performed (see db/backup_*.php)
$blocks_version = 2005090200; // The current version is a date (YYYYMMDDXX)
$blocks_version = 2005090201; // The current version is a date (YYYYMMDDXX)