mirror of
https://github.com/friendica/friendica
synced 2025-04-26 04:30:11 +00:00
Adapt & remove impossible code
This commit is contained in:
parent
9386adb184
commit
7f184bf6fa
3 changed files with 14 additions and 17 deletions
|
@ -57,6 +57,18 @@ class DBStructure
|
|||
echo DI::l10n()->t('The database version had been set to %s.', $version);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dops a specific table
|
||||
*
|
||||
* @param string $table the table name
|
||||
*
|
||||
* @return bool true if possible, otherwise false
|
||||
*/
|
||||
public static function dropTable(string $table): bool
|
||||
{
|
||||
return DBA::isResult(DBA::e('DROP TABLE ' . DBA::quoteIdentifier($table) . ';'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Drop unused tables
|
||||
*
|
||||
|
@ -94,8 +106,7 @@ class DBStructure
|
|||
$sql = 'DROP TABLE ' . DBA::quoteIdentifier($table) . ';';
|
||||
echo $sql . "\n";
|
||||
|
||||
$result = DBA::e($sql);
|
||||
if (!DBA::isResult($result)) {
|
||||
if (!static::dropTable($table)) {
|
||||
self::printUpdateError($sql);
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue