I already have a model named profile and corresponding database table profiles.
Now i would like to create crud operations for this profile model using SCAFFOLDING.
how this can be achieved.
I already have a model named profile and corresponding database table profiles. Now i
Share
I’d go with Replico’s answer. But if you really want to use scaffold you could use:
rails generate scaffold_controller NAMEso for you:
rails generate scaffold_controller Profilesee
rails generate scaffold_controller --helpfor details.