mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
Updated version to 2003061100 and modify backup tables (mediumtext)
This commit is contained in:
parent
13e1a20fe1
commit
10453b424e
@ -5,6 +5,6 @@
|
||||
// database (backup_version) to determine whether upgrades should
|
||||
// be performed (see db/backup_*.php)
|
||||
|
||||
$backup_version = 2003061000; // The current version is a date (YYYYMMDDXX)
|
||||
$backup_version = 2003061100; // The current version is a date (YYYYMMDDXX)
|
||||
|
||||
$backup_release = "0.5.5 alpha"; // User-friendly version number
|
||||
$backup_release = "0.5.7 alpha"; // User-friendly version number
|
||||
|
@ -61,6 +61,11 @@ function backup_upgrade($oldversion=0) {
|
||||
MODIFY `info` TEXT");
|
||||
}
|
||||
|
||||
if ($oldversion < 2003061100 and $result) {
|
||||
$result = execute_sql("ALTER TABLE `{$CFG->prefix}backup_ids`
|
||||
MODIFY `info` MEDIUMTEXT");
|
||||
}
|
||||
|
||||
//Finally, return result
|
||||
return $result;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user