Why do we have bboard_q_and_a_categories defined as:
create table bboard_q_and_a_categories (
topic_id varchar(100) not null references
bboard_topics,
category varchar(200) not null
);
Needless to say, this breaks categorization because bboard_topics is
defined as:
create table bboard_topics (
topic_id integer not null primary key,
I was going to commit the change but thought of asking first so I was
sure this wasn't done for a reason.
Request notifications