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

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

class AddArchivedColumnToDeployments < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :deployments, :archived, :boolean, default: false, null: false
  end
end