summaryrefslogtreecommitdiff
path: root/db/migrate/20210127052226_add_subgroup_events_to_web_hooks.rb
blob: fe2b2ef412d650d6603c9360c2dd82929ee2404e (plain)
1
2
3
4
5
6
7
8
9
# 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