1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-14 12:52:08 +02:00

Add forum_last_post_id to forums

git-svn-id: file:///svn/phpbb/trunk@29 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-02-23 18:25:50 +00:00
parent 363d4c0582
commit fb77adef04

View File

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