Sha256: ee29e21ef404d785abc8c62933875ecb282e1581ea62fc4e4de5c37bceb32e84
Contents?: true
Size: 553 Bytes
Versions: 50
Compression:
Stored size: 553 Bytes
Contents
class CreateScenarioRunHistory < ActiveRecord::Migration<%= migration_version %> def change create_table :scenario_run_history do |t| t.belongs_to :scenario_run_registry t.integer :status, default: 2 # :good, :bad, :unknown t.string :authority_name t.string :subauthority_name t.string :service t.string :action t.string :url t.string :err_message t.integer :scenario_type, default: 0 # :connection, :accuracy, :performance t.decimal :run_time, precision: 10, scale: 4 end end end
Version data entries
50 entries across 50 versions & 1 rubygems