|
class CreateStepVerifications < ActiveRecord::Migration
def change
create_table :step_verifications do |t|
t.references :step_validation, index: true
t.boolean :validated
t.references :validated_by, index: true
t.string :content
t.timestamps
end
end
end
|