summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220620132300_update_last_run_date_for_iterations_cadences.rb
blob: 50b0b25d469747afb01175e0bddb5031c864022a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class UpdateLastRunDateForIterationsCadences < Gitlab::Database::Migration[2.0]
  restrict_gitlab_migration gitlab_schema: :gitlab_main

  def up
    execute <<~SQL
      UPDATE iterations_cadences SET last_run_date=CURRENT_DATE WHERE automatic=true;
    SQL
  end

  def down
    # no op
    # 'last_run_date' stores the date on which the cadence record should be
    # updated using `CreateIterationsInAdvance` service that is idempotent
    # and the column is only useful for optimizing when to run the service
    # ('last_run_date' is also a misnomer as it can be better-named 'next_run_date'.)
  end
end