|
class CreateStepSubmissions < ActiveRecord::Migration
def change
create_table :step_submissions do |t|
t.references :agent_step, index: true
t.references :submission_contents, index: true
t.boolean :validated
t.references :validated_by, index: true
t.datetime :date_validated
t.timestamps
end
end
end
|