Avalanche Game prototype. Built with Rails.

20140821183452_create_mission_agent_steps.rb 323B

    class CreateMissionAgentSteps < ActiveRecord::Migration def change create_table :mission_agent_steps do |t| t.references :mission_agent, index: true t.integer :step t.text :description t.boolean :completed t.string :proof_type t.string :proof t.timestamps end end end