class UpdateWebhooks < ActiveRecord::Migration[4.2]
  def change
    add_column :webhooks do |t|
      t.string :auth_type
      t.string :username
      t.string :password
      t.token :token
    end    
  end
end
