In my Phoenix 0.10.0 app, I ran
mix phoenix.gen.resource Job jobs job_name:string job_url:string company_url:string location:string notes:string
following up by adding a resources line router.ex and running mix ecto.migrate.
With these changes, creating a new record from the web interface works fine as long as I fill out all the fields. If I leave a single one of them blank there's an error message saying "Oops, something went wrong!" in the browser.
I'd like to allow the notes to be left blank. How can I do that?