summaryrefslogtreecommitdiff
path: root/db/migrate/20200305020458_add_label_restore_table.rb
blob: a5809cfe14b6442ca5bfca6f6a49048e571faf57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

class AddLabelRestoreTable < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    # copy table
    execute "CREATE TABLE #{backup_labels_table_name} (LIKE #{labels_table_name} INCLUDING ALL);"

    # make the primary key a real functioning one rather than incremental
    execute "ALTER TABLE #{backup_labels_table_name} ALTER COLUMN ID DROP DEFAULT;"

    # add some fields that make changes trackable
    execute "ALTER TABLE #{backup_labels_table_name} ADD COLUMN restore_action INTEGER;"
    execute "ALTER TABLE #{backup_labels_table_name} ADD COLUMN new_title VARCHAR;"
  end

  def down
    drop_table backup_labels_table_name
  end

  private

  def labels_table_name
    :labels
  end

  def backup_labels_table_name
    :backup_labels
  end
end