Displaying 1 result from an estimated 1 matches for "fk_adverts_users".
2006 Apr 02
1
One to Many Relationship Issues
...int not null auto_increment,
title varchar(100) not null,
description text not null,
image_url varchar(200) not null,
price decimal(10,2) not null,
website_url varchar(255) not null,
user_id int not null,
constraint fk_adverts_users foreign key (user_id) references
users(id),
primary key (id)
);
--
Posted via http://www.ruby-forum.com/.