summaryrefslogtreecommitdiff
path: root/db/migrate/20160413115152_add_token_to_web_hooks.rb
blob: 628b1d51b30a6f7eccf98c296233d65843e87369 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTokenToWebHooks < ActiveRecord::Migration
  def change
    add_column :web_hooks, :token, :string
  end
end