Displaying 1 result from an estimated 1 matches for "myattr1".
Did you mean:
  myattr
  
2006 Feb 27
6
One to Many example... please!
Hi,
I am pulling my hair out trying to work out how to put together what 
should be a simple app in rails. The app is to CV''s so I have a table of 
CV''s and each CV can have multiple skills. Skills are in a 2nd table 
below;
CREATE TABLE cvs(
	id		INT		not null	AUTO_INCREMENT	PRIMARY KEY,
	first_name	VARCHAR(30) 	not null,
	family_name	VARCHAR(30) 	not null,
	email