Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi i m new ruby on rails 3.0 i want know how create new column one i migrated file

i created migration using

rake db:migrate 

class CreateCheckings < ActiveRecord::Migration
  def change

    create_table :checkings do |t|

         t.string :phone, :limit => 20
          t.string  :email 
        t.integer  "country_id"
            t.string   "registration_via"
            t.string   "industry_type", :limit => 2
            t.boolean  "is_admin",              :default => false
            t.boolean  "is_account_blocked",    :default => false   

      t.timestamps
    end
  end
end

table are created now new to add some some column how can i do with terminal plz help me.

share|improve this question

2 Answers

up vote 0 down vote accepted

In terminal

rails g migration add_column_name_to_table_name column_name:type

rails g migration add_columns_to_tables
share|improve this answer

run rails g migration add_column_name_to_table_name column_name:type or create one migration rails g migration add_columns_to_tables then

def change
    add_column :table_name, :column_name, :type
end

refer http://guides.rubyonrails.org/migrations.html, http://api.rubyonrails.org/classes/ActiveRecord/Migration.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.