debian-mirror-gitlab/db/migrate/20210127052226_add_subgroup_events_to_web_hooks.rb
2021-03-11 19:13:27 +05:30

10 lines
222 B
Ruby

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