summaryrefslogtreecommitdiff
path: root/db/migrate/20190930082942_add_new_release_to_notification_settings.rb
blob: 2ec5815f542fcd60eee0dc804e66e4bd49efb4d7 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddNewReleaseToNotificationSettings < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :notification_settings, :new_release, :boolean
  end
end