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:
Diffstat (limited to 'db/migrate/20220802200719_add_user_details_profile_fields.rb')
-rw-r--r--db/migrate/20220802200719_add_user_details_profile_fields.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20220802200719_add_user_details_profile_fields.rb b/db/migrate/20220802200719_add_user_details_profile_fields.rb
deleted file mode 100644
index 952b0bc1d9a..00000000000
--- a/db/migrate/20220802200719_add_user_details_profile_fields.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddUserDetailsProfileFields < Gitlab::Database::Migration[2.0]
- enable_lock_retries!
-
- # rubocop:disable Migration/AddLimitToTextColumns
- # limits are added in 20220802202505_add_user_details_field_limits
- def change
- add_column :user_details, :linkedin, :text, null: false, default: ''
- add_column :user_details, :twitter, :text, null: false, default: ''
- add_column :user_details, :skype, :text, null: false, default: ''
- add_column :user_details, :website_url, :text, null: false, default: ''
- add_column :user_details, :location, :text, null: false, default: ''
- add_column :user_details, :organization, :text, null: false, default: ''
- end
- # rubocop:enable Migration/AddLimitToTextColumns
-end