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

20200909194014_change_pypi_python_version_type_cleanup.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c94f745e762c073e1f4846ea5e8c1cbad946792a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class ChangePypiPythonVersionTypeCleanup < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    cleanup_concurrent_column_type_change(:packages_pypi_metadata, :required_python)
  end

  def down
    execute('UPDATE packages_pypi_metadata SET required_python = substring(required_python from 1 for 50)')
    change_column_type_concurrently :packages_pypi_metadata, :required_python, 'varchar(50)', batch_column_name: :package_id
  end
end