|
class AddReadyKnowledgeToChallenges < ActiveRecord::Migration
|
|
def change
|
|
add_column :challenges, :ready_knowledge, :text
|
|
add_column :challenges, :task_pass, :text
|
|
add_column :challenges, :answer, :text
|
|
add_column :challenges, :score, :integer
|
|
end
|
|
end
|