gitlabhq/db/migrate/20120712080407_add_type_to_...

6 lines
141 B
Ruby

class AddTypeToWebHook < ActiveRecord::Migration
def change
add_column :web_hooks, :type, :string, :default => "ProjectHook"
end
end