While that was as a part of creating the initial scaffolding for a model, the basic approach is the same. depot> rails generate migration add_quantity_to_line_item quantity:integer Rails can tell from the name of the migration that you are adding one or more columns to the line_item table, and can pick up the names and data types for each column from the last argument.