To generate schema, view, controller, migration file for the repository, default CRUD templates and test files for a model (like a scaffolding in Rails) one can use phoenix.gen.html mix task like this:
mix phoenix.gen.html Book books title note:text pages:integer author_id:references:authors
Wh...