I am new to Ruby on Rails. I use scaffold to generate first controller ( model and view), Projects in this case. Scaffold automatically create a form that can use to insert data to project table. I want to add skills to this form, so users can add required skills on project. Once they create project it should add skills table if skills is not available (new skills ) also i want to update projects_skills table ( relation )
Currently i have Project ( Controller ), Project (model ) and Views - using scaffold , Skills (Controller, Model and Views ) manually created
Thanks in advance