Ruby on Rails
Wednesday, July 24, 2013
In Rails we have command to add migration that specifies the table name column name. For example :
$ 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
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/036f33b5-5343-4b38-a572-a45a8a69b419%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment