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

20211119154221_create_pages_deployment_states.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 283f6c7d0d701f1fc5d20f2ec0b632814fb970b2 (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
32
33
34
35
36
37
38
# frozen_string_literal: true

class CreatePagesDeploymentStates < Gitlab::Database::Migration[1.0]
  VERIFICATION_STATE_INDEX_NAME = "index_pages_deployment_states_on_verification_state"
  PENDING_VERIFICATION_INDEX_NAME = "index_pages_deployment_states_pending_verification"
  FAILED_VERIFICATION_INDEX_NAME = "index_pages_deployment_states_failed_verification"
  NEEDS_VERIFICATION_INDEX_NAME = "index_pages_deployment_states_needs_verification"

  disable_ddl_transaction!

  def up
    unless table_exists?(:pages_deployment_states)
      with_lock_retries do
        create_table :pages_deployment_states, id: false do |t|
          t.references :pages_deployment, primary_key: true, null: false, foreign_key: { on_delete: :cascade }
          t.integer :verification_state, default: 0, limit: 2, null: false
          t.column :verification_started_at, :datetime_with_timezone
          t.datetime_with_timezone :verification_retry_at
          t.datetime_with_timezone :verified_at
          t.integer :verification_retry_count, limit: 2
          t.binary :verification_checksum, using: 'verification_checksum::bytea'
          t.text :verification_failure

          t.index :verification_state, name: VERIFICATION_STATE_INDEX_NAME
          t.index :verified_at, where: "(verification_state = 0)", order: { verified_at: 'ASC NULLS FIRST' }, name: PENDING_VERIFICATION_INDEX_NAME
          t.index :verification_retry_at, where: "(verification_state = 3)", order: { verification_retry_at: 'ASC NULLS FIRST' }, name: FAILED_VERIFICATION_INDEX_NAME
          t.index :verification_state, where: "(verification_state = 0 OR verification_state = 3)", name: NEEDS_VERIFICATION_INDEX_NAME
        end
      end
    end

    add_text_limit :pages_deployment_states, :verification_failure, 255
  end

  def down
    drop_table :pages_deployment_states
  end
end