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>2022-01-20 12:16:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-01-20 12:16:11 +0300
commitedaa33dee2ff2f7ea3fac488d41558eb5f86d68c (patch)
tree11f143effbfeba52329fb7afbd05e6e2a3790241 /db/migrate/20201230180202_create_onboarding_progress.rb
parentd8a5691316400a0f7ec4f83832698f1988eb27c1 (diff)
Add latest changes from gitlab-org/gitlab@14-7-stable-eev14.7.0-rc42
Diffstat (limited to 'db/migrate/20201230180202_create_onboarding_progress.rb')
-rw-r--r--db/migrate/20201230180202_create_onboarding_progress.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/db/migrate/20201230180202_create_onboarding_progress.rb b/db/migrate/20201230180202_create_onboarding_progress.rb
deleted file mode 100644
index b9fe64eb19d..00000000000
--- a/db/migrate/20201230180202_create_onboarding_progress.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-# frozen_string_literal: true
-
-class CreateOnboardingProgress < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- with_lock_retries do
- create_table :onboarding_progresses do |t|
- t.references :namespace, null: false, index: { unique: true }, foreign_key: { on_delete: :cascade }
- t.timestamps_with_timezone null: false
- t.datetime_with_timezone :git_pull_at
- t.datetime_with_timezone :git_write_at
- t.datetime_with_timezone :merge_request_created_at
- t.datetime_with_timezone :pipeline_created_at
- t.datetime_with_timezone :user_added_at
- t.datetime_with_timezone :trial_started_at
- t.datetime_with_timezone :subscription_created_at
- t.datetime_with_timezone :required_mr_approvals_enabled_at
- t.datetime_with_timezone :code_owners_enabled_at
- t.datetime_with_timezone :scoped_label_created_at
- t.datetime_with_timezone :security_scan_enabled_at
- t.datetime_with_timezone :issue_auto_closed_at
- t.datetime_with_timezone :repository_imported_at
- t.datetime_with_timezone :repository_mirrored_at
- end
- end
- end
-
- def down
- with_lock_retries do
- drop_table :onboarding_progresses
- end
- end
-end