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

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

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

  def change
    remove_column :events, :id_convert_to_bigint, :integer, null: false, default: 0
  end
end