gitlab-org--gitlab-foss/db/migrate/20190930082942_add_new_rele...

10 lines
209 B
Ruby

# frozen_string_literal: true
class AddNewReleaseToNotificationSettings < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
add_column :notification_settings, :new_release, :boolean
end
end