Quote:
Originally Posted by barros001
Is it a good practice to add new columns to vb tables? Another idea is to create a new table to map all featured posts.
|
Either way has its own pros and cons. On one hand, you'd be loading that data nearly every time posts are fetched. On the other, you'd need to join your own table to get the data. As such, you need to weigh in which is the best option for you. In this case, going for the separate table is probably a good idea, as you'll only need that data sparingly.