Displaying 1 result from an estimated 1 matches for "fk_cars_user".
2006 Mar 20
1
FileColumn question
...null default ''''
)ENGINE=InnoDB default CHARSET=latin1;
And a car table :-
create table cars (
id integer unsigned not null auto_increment primary key,
user_id integer unsigned not null,
title varchar(100) not null,
image_id integer unsigned not null,
constraint fk_cars_user foreign key (user_id) references
users(id),
constraint fk_cars_image foreign key (image_id) references images(id)
)ENGINE=InnoDB default CHARSET=latin1;
( The user table I''m using is the one provided by the Salted Login
Generator ).
Now I want my Cars Table to have many images.
1) Ho...