summaryrefslogtreecommitdiff
path: root/db/migrate/20191003161031_add_mark_for_deletion_to_projects.rb
blob: 12f17c849aaa7493a112550aef61debbadfffe9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddMarkForDeletionToProjects < ActiveRecord::Migration[5.2]
  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  # rubocop:disable Migration/AddColumnsToWideTables
  def change
    add_column :projects, :marked_for_deletion_at, :date
    add_column :projects, :marked_for_deletion_by_user_id, :integer
  end
  # rubocop:enable Migration/AddColumnsToWideTables
end