summaryrefslogtreecommitdiff
path: root/db/migrate/20200622103836_create_snippet_statistics.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200622103836_create_snippet_statistics.rb')
-rw-r--r--db/migrate/20200622103836_create_snippet_statistics.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/db/migrate/20200622103836_create_snippet_statistics.rb b/db/migrate/20200622103836_create_snippet_statistics.rb
new file mode 100644
index 00000000000..691a9acdc04
--- /dev/null
+++ b/db/migrate/20200622103836_create_snippet_statistics.rb
@@ -0,0 +1,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