socialforge/db/migrate/20170314072825_add_ready_kn...

9 lines
271 B
Ruby

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