The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
While thinking about the many hacks that add columns to crucial base tables, such as post, it seemed that is not the best idea. Modifying a vBulletin base table could cause problems with upgrades later, or cause corruption, or have unintended side-effects when other hacks add or remove data from them.
It seems that a better way to add data to post, for instance, would be to add a table that holds the new columns. You could just add code that then queries, or adds to, that table using the postid from vBulletin, or modify a query to use a join to bring in the additional data. Like this, perhaps: Code:
select ... from post inner join hack_post on post.postid = hack_post.postid... |
#2
|
||||
|
||||
![]()
This will also add more stress to the server / more querys i think. its much simpler to store the data in the same field
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|