Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated version to 2003061100 and modify backup tables (mediumtext)
  • Loading branch information
stronk7 committed Jun 12, 2003
1 parent 13e1a20 commit 10453b4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backup/backup_version.php
Expand Up @@ -5,6 +5,6 @@
// database (backup_version) to determine whether upgrades should // database (backup_version) to determine whether upgrades should
// be performed (see db/backup_*.php) // 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
5 changes: 5 additions & 0 deletions backup/db/backup_mysql.php
Expand Up @@ -61,6 +61,11 @@ function backup_upgrade($oldversion=0) {
MODIFY `info` TEXT"); MODIFY `info` TEXT");
} }


if ($oldversion < 2003061100 and $result) {
$result = execute_sql("ALTER TABLE `{$CFG->prefix}backup_ids`
MODIFY `info` MEDIUMTEXT");
}

//Finally, return result //Finally, return result
return $result; return $result;


Expand Down

0 comments on commit 10453b4

Please sign in to comment.