Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20191115114032_add_processed_to_ci_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6fece99cb02fc68ad0eff6f0ad11db78f725d734 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :ci_builds, :processed, :boolean # rubocop:disable Migration/AddColumnsToWideTables
  end
end