debian-mirror-gitlab/db/migrate/20190115054216_add_error_notification_sent_to_remote_mirrors.rb
2019-02-15 15:39:39 +05:30

12 lines
264 B
Ruby

# frozen_string_literal: true
class AddErrorNotificationSentToRemoteMirrors < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :remote_mirrors, :error_notification_sent, :boolean
end
end