$ rails generate migration AddPartNumberToProducts part_number:stringwill generate
class AddPartNumberToProducts < ActiveRecord::Migration
def change
add_column :products, :part_number, :string
end
endI know we can add the options on migration file, below migration will add part_number column after description column on products table.
class AddPartNumberToProducts < ActiveRecord::Migration
def change
add_column :products, :part_number, :string, :after => :descritpion
end
endProblem: How to specify the options (example :after => :descritpion) on command line so that it will add directly on migration file.
FYI : I've asked the same question on stackoverflow Link
http://stackoverflow.com/questions/17720849/rails-migration-generation-with-options