1class CreateResults < ActiveRecord::Migration[6.0] 2 def change 3 create_table :results do |t| 4 t.references :command 5 t.references :hooked_browser 6 t.datetime :date 7 t.integer :status 8 t.text :data 9 end 10 end 11end 12 13