Busque sale algo aca, pero no vi que encontararn la solución, alguien
sabe
por que pasa
tengo : 011_modify_basehoras.rb
class ModifyBasehoras < ActiveRecord::Migration
def self.up
add_column “basehoras”, “horatipo_id”, “integer”
remove_column “basehoras”, “nota”
end
def self.down
remove_column “basehoras”, “horatipo_id”
add_column “basehoras”, “nota”, “string”
end
end
al hacer rake db:migrate me da:
C:\colegios>rake db:migrate
(in C:/colegios)
== ModifyBasehoras: migrating
– add_column(“basehoras”, “horatipo_id”, “integer”)
rake aborted!
You have a nil object when you didn’t expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.[]
(See full trace by running task with --trace)
Alguna idea?
Gracias