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.