Created
September 9, 2011 20:28
-
-
Save juanm55/1207246 to your computer and use it in GitHub Desktop.
just some error im getting trying to do a migration in rails 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#the actual migration generated.... | |
class CreateEvaluatorRelations < ActiveRecord::Migration | |
def self.up | |
end | |
def self.down | |
end | |
end | |
#total... no errors but the generated migration is not what I expected... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rails generate migration CreateEvaluatorRelation evaluation_id:integer evaluator_user_id:integer evaluated_user_id:integer relation_id:integer competence_id:integer behavior_id:integer ideal:integer score:float | |
invoke active_record | |
create db/migrate/20110909201938_create_evaluator_relation.rb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment