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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-11 03:09:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-11 03:09:09 +0300
commit47ebeef9122af96dc1fcd5c8e1ca0091f62fa113 (patch)
treef140bf150d6670b734e981851070e73c270fc45f /db/migrate/20200221100514_create_users_statistics.rb
parent06bb4eba7828ce59fde366734828458c037059b4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate/20200221100514_create_users_statistics.rb')
-rw-r--r--db/migrate/20200221100514_create_users_statistics.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20200221100514_create_users_statistics.rb b/db/migrate/20200221100514_create_users_statistics.rb
new file mode 100644
index 00000000000..c02e635bdd4
--- /dev/null
+++ b/db/migrate/20200221100514_create_users_statistics.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class CreateUsersStatistics < ActiveRecord::Migration[6.0]
+ DOWNTIME = false
+
+ def change
+ create_table :users_statistics do |t|
+ t.timestamps_with_timezone null: false
+ t.integer :without_groups_and_projects, null: false, default: 0
+ t.integer :with_highest_role_guest, null: false, default: 0
+ t.integer :with_highest_role_reporter, null: false, default: 0
+ t.integer :with_highest_role_developer, null: false, default: 0
+ t.integer :with_highest_role_maintainer, null: false, default: 0
+ t.integer :with_highest_role_owner, null: false, default: 0
+ t.integer :bots, null: false, default: 0
+ t.integer :blocked, null: false, default: 0
+ end
+ end
+end