diff options
| -rw-r--r-- | phpBB/upgrade_20.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/upgrade_20.php b/phpBB/upgrade_20.php index 8087943884..de89622e6d 100644 --- a/phpBB/upgrade_20.php +++ b/phpBB/upgrade_20.php @@ -270,6 +270,7 @@ Backups completed ok.<P> change_column($db, "forums", "forum_type", "tinyint(3)", "null"); add_column($db, "forums", "forum_posts", "int(10)", "default '0' not null"); add_column($db, "forums", "forum_topics", "int(10)", "default '0' not null"); + add_column($db, "forums", "forum_last_post_id", "int(10)", "default '0' not null"); echo "Altered table forums <br>"; |
