rails generate model with options

rails generate model User name:string email:string - rails: the Rails command-line tool - generate: the command to generate new code - model: the type of code to generate (in this case, a model) - User: the name of the model being generated - name:string email:string: the attributes of the User model, along with their data types