Skip to content

Commit

Permalink
Added postgres support for user specific forum tracking.
Browse files Browse the repository at this point in the history
  • Loading branch information
mchurch committed Apr 24, 2005
1 parent 9e2b187 commit 5cc3006
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mod/forum/db/postgres7.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ function forum_upgrade($oldversion) {
);');
}

if ($oldversion < 2005042301) { // Add user tracking prefs field.
modify_database('','ALTER TABLE prefix_user ADD
trackforums integer default 0 NOT NULL;');
}

return true;

}
Expand Down

0 comments on commit 5cc3006

Please sign in to comment.