Skip to content

Instantly share code, notes, and snippets.

View ericsullivan's full-sized avatar

Eric Sullivan ericsullivan

View GitHub Profile
### Keybase proof
I hereby claim:
* I am ericsullivan on github.
* I am ericsullivan (https://keybase.io/ericsullivan) on keybase.
* I have a public key ASA8U53Wc1BC2h0ZWUOU97Bgt6fFcJGENoAHoTex7Xb-3Qo
To claim this, I am signing this object:
@ericsullivan
ericsullivan / create_honeybadger_notificiations.rb
Created July 10, 2017 16:40
Honeybadger Nested Exception Filtering & Logging
class CreateHoneybadgerNotifications < ActiveRecord::Migration
def change
create_table :honeybadger_notifications, id: false do |t|
t.binary :uuid, limit: 16, primary: true, null: false
t.text :payload, null: false
t.timestamps null: false
end
add_index :honeybadger_notifications, :uuid, unique: true