class CreateAgentSteps < ActiveRecord::Migration
def change
create_table :agent_steps do |t|
t.references :mission_agent, index: true
t.integer :step
t.string :title
t.text :description
t.boolean :completed
t.datetime :completed_date
t.timestamps
end
end
end
|