debian-mirror-gitlab/db/migrate/20160413115152_add_token_to_web_hooks.rb

7 lines
139 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-06-02 11:05:42 +05:30
class AddTokenToWebHooks < ActiveRecord::Migration
def change
add_column :web_hooks, :token, :string
end
end