summaryrefslogtreecommitdiff
path: root/db/migrate/20141111043011_create_failures.rb
blob: 8e3d7c329773b94af53d4fd6a2df1cc92c73d1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateFailures < ActiveRecord::Migration
  def change
    create_table :failures do |t|
      t.references :environment, index: true
      t.string :message
      t.string :hostname
      t.string :error_type
      t.text :backtrace, array: true, default: []

      t.timestamps
    end
  end
end