gitlab-org--gitlab-foss/db/migrate/20200728163009_add_deployme...

10 lines
226 B
Ruby

# frozen_string_literal: true
class AddDeploymentEventsToWebHooks < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :web_hooks, :deployment_events, :boolean, null: false, default: false
end
end