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 trial

PHP Laravel 4 Basics Relating Data Model relation

Pierce McGeough
Pierce McGeough
1,754 Points

Foreign Key

When creating the $table->integer('todo_list_id'); How come you dont need to use unsignedInteger?

Is it because you are not linking in the database?

2 Answers

Don Graham
Don Graham
24,198 Points

The instructor could have used an unsigned integer, but for clarity and keeping the focus on Laravel, he uses a plain integer type.

Considering performance and query speed, an unsigned integer would be better suited in a real world app.

I am afraid I'm not into database that much. I can answer for html,css and javascript