Displaying 1 result from an estimated 1 matches for "fk_requests_support".
2006 Apr 04
1
What is the best way to handle this? It''s not a good use of the new Polymorphic-Association thingy is it?
...:
:
constraint fk_requests_creator foreign key (created_by_id) references
users(id),
constraint fk_requests_updater foreign key (last_updated_by_id)
references users(id),
constraint fk_requests_customer foreign key (primary_customer_id)
references users(id),
constraint fk_requests_support foreign key (primary_support_id)
references users(id),
primary key (id)
);
CREATE TABLE users
(
id int not null auto_increment,
fullname varchar(100) not null,
:
primary key (id)
);
Basically, the users table contains a list...