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 trialKeith Michelson
3,395 Pointsartisan command problem
This doesn't work for me, but maybe because I'm on Laravel 5 I had to do this:
php artisan make:migration create_todo_items_table --create="todo_items"
1 Answer
Ryan Meyer
6,927 PointsI don't think you need quotations around the table name. This worked for me.
php artisan make:migration create_todo_items_table --create=todo_items
Emmanuel Salom
Courses Plus Student 8,320 PointsEmmanuel Salom
Courses Plus Student 8,320 PointsWhat error are you getting?