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

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

class AddCiJobArtifactIdToPagesMetadata < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column(:project_pages_metadata, :artifacts_archive_id, :bigint)
  end
end