Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJannik Spiessens
13,229 PointsAdding foreign key code challenge
The challenge says:
Alter the "t_movies" table to add a foreign key called "fk_genre_id" and constrain it to reference the "t_genres" "pk_id".
I did:
ALTER TABLE t_movies ADD COLUMN fk_genre_id INTEGER NULL ADD CONSTRAINT FOREIGN KEY (fk_genre_id) REFERENCES t_genres(pk_id);
The error says:
Bummer! You're missing the 'fk_genre_id' column.
I can't figure out the problem. Is this a bug or am I missing something?
3 Answers
Becky Hirsch
14,069 PointsIf you add a comma between NULL and ADD it should work.
ALTER TABLE t_movies ADD COLUMN fk_genre_id INTEGER NULL, ADD CONSTRAINT FOREIGN KEY (fk_genre_id) REFERENCES t_genres(pk_id);
Jannik Spiessens
13,229 PointsThat worked! Thanks for helping me out.
Becky Hirsch
14,069 PointsMy pleasure! I remember missing the comma in that challenge :).