Call the update_indexes method when updating the Schema

This commit is contained in:
markjcrane
2025-11-28 16:51:22 -07:00
parent 73a85cf57f
commit 374713e7c6
3 changed files with 30 additions and 0 deletions

View File

@@ -235,6 +235,14 @@
echo " ".trim($row)."\n";
}
}
//update database foreign key indexes
$response = $database->update_indexes();
if ($display_type === 'text') {
foreach($response as $row) {
echo " ".trim($row['sql'])."\n";
}
}
}