gitlabhq/db/migrate/20121120051432_add_service_id_to_web_hook.rb

6 lines
138 B
Ruby
Raw Normal View History

2012-11-19 19:14:05 +01:00
class AddServiceIdToWebHook < ActiveRecord::Migration
def change
add_column :web_hooks, :service_id, :integer, null: true
end
end