class CreateResults

Public Instance Methods

change() click to toggle source
# File lib/norad_cli/templates/spec/support/test_server/db/migrate/20160725144604_create_results.rb, line 2
def change
  create_table :results do |t|
    t.string :assessment_id
    t.string :status
    t.text :output
    t.string :title
    t.string :description
    t.string :nid
    t.string :sir

    t.timestamps
  end
end