Only delete "post-user" when it is has got the wrong structure

This commit is contained in:
Michael 2021-04-28 20:43:51 +00:00
parent e41283faff
commit 69f6b73033
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ function update_1380()
function pre_update_1395()
{
if (DBStructure::existsTable('post-user') && !DBA::e("DROP TABLE `post-user`")) {
if (DBStructure::existsTable('post-user') && !DBStructure::existsColumn('post-user', ['id']) && !DBA::e("DROP TABLE `post-user`")) {
return Update::FAILED;
}
return Update::SUCCESS;