This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |