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

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

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

  def change
    add_column :description_versions, :deleted_at, :datetime_with_timezone
  end
end