debian-mirror-gitlab/db/migrate/20200728163009_add_deployment_events_to_web_hooks.rb

10 lines
226 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# 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