gitlab-org--gitlab-foss/db/migrate/20160413115152_add_token_to_web_hooks.rb
2018-07-25 17:47:12 +08:00

5 lines
117 B
Ruby

class AddTokenToWebHooks < ActiveRecord::Migration
def change
add_column :web_hooks, :token, :string
end
end