debian-mirror-gitlab/db/migrate/20190930082942_add_new_release_to_notification_settings.rb
2019-12-21 20:55:43 +05:30

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