summaryrefslogtreecommitdiff
path: root/db/migrate/20200908212414_add_feature_flag_events_to_web_hooks.rb
blob: 40e2b37b390c811bfa5d6ef59b28a60968d88660 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddFeatureFlagEventsToWebHooks < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :web_hooks, :feature_flag_events, :boolean, null: false, default: false
  end
end