crowdAI/crowdai

View on GitHub
doc/technical/archived_migrations/20171211153828_add_challenge_title_to_challenge_call_responses.rb

Summary

Maintainability
A
15 mins
Test Coverage
class AddChallengeTitleToChallengeCallResponses < ActiveRecord::Migration[5.1]
  def change
    add_column :challenge_call_responses, :challenge_title, :string
    add_column :challenge_call_responses, :motivation, :text
    add_column :challenge_call_responses, :timeline, :text
    add_column :challenge_call_responses, :evaluation_criteria, :text
    add_column :challenge_call_responses, :organizers_bio, :text
    add_column :challenge_call_responses, :other, :text
  end
end