I am creating a site that will sell phones and I have tables and products all set up.
When I run:
rails generate Scaffold Sale item_id:integer employee_id:integer
I get a Ruby file called 'Sale' and 'Part.rb' in my app/models. I am not getting the two Ruby files I need, which are 'Emlployee.rb' and 'Item.rb'.
I need these files in order to keep track of which employee sold which phone. When I navigate to my site /sales there is a table but when I navigate to /employees to add a new employee Cloud0 tells me path is unspecified.
What am I doing wrong?