Merge pull request #10247 from annando/update
Only delete the post-user table if it has got the old structure
This commit is contained in:
commit
5ade228c63
|
@ -660,7 +660,7 @@ function update_1380()
|
||||||
|
|
||||||
function pre_update_1395()
|
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::FAILED;
|
||||||
}
|
}
|
||||||
return Update::SUCCESS;
|
return Update::SUCCESS;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user