From fb77adef04bc159f6f5a458202a0e9a521e16e22 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 23 Feb 2001 18:25:50 +0000 Subject: [PATCH] Add forum_last_post_id to forums git-svn-id: file:///svn/phpbb/trunk@29 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/upgrade_20.php | 1 + 1 file changed, 1 insertion(+) 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.

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
";