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

20200622103836_create_snippet_statistics.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 691a9acdc0420bd55488ae54c823c122cc935230 (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
# frozen_string_literal: true

class CreateSnippetStatistics < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      create_table :snippet_statistics, id: false do |t|
        t.references :snippet, primary_key: true, default: nil, index: false, foreign_key: { on_delete: :cascade }
        t.bigint :repository_size, default: 0, null: false
        t.bigint :file_count, default: 0, null: false
        t.bigint :commit_count, default: 0, null: false
      end
    end
  end

  def down
    with_lock_retries do
      drop_table :snippet_statistics
    end
  end
end