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
path: root/db
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-18 00:07:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-18 00:07:52 +0300
commit2d96e61ceb1a3f26283dfba43f85d99488752296 (patch)
tree9687e475f6292499721f6acab4182b5f31599e5b /db
parente72386771751fb22245bc6604fef236a2ee130cb (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20191212140117_change_commit_user_mentions_commit_id_column_type.rb36
-rw-r--r--db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb25
-rw-r--r--db/schema.rb6
3 files changed, 64 insertions, 3 deletions
diff --git a/db/migrate/20191212140117_change_commit_user_mentions_commit_id_column_type.rb b/db/migrate/20191212140117_change_commit_user_mentions_commit_id_column_type.rb
new file mode 100644
index 00000000000..f30cdab3441
--- /dev/null
+++ b/db/migrate/20191212140117_change_commit_user_mentions_commit_id_column_type.rb
@@ -0,0 +1,36 @@
+# frozen_string_literal: true
+
+class ChangeCommitUserMentionsCommitIdColumnType < ActiveRecord::Migration[5.2]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ OLD_INDEX = 'commit_user_mentions_on_commit_id_and_note_id_index'
+ OLD_TMP_INDEX = 'temp_commit_id_and_note_id_index'
+ NEW_TMP_INDEX = 'temp_commit_id_for_type_change_and_note_id_index'
+ NEW_INDEX = 'commit_id_and_note_id_index'
+
+ def up
+ # the initial index name is too long and fails during migration. Renaming the index first.
+ add_concurrent_index :commit_user_mentions, [:commit_id, :note_id], name: OLD_TMP_INDEX
+ remove_concurrent_index_by_name :commit_user_mentions, OLD_INDEX
+
+ change_column_type_concurrently :commit_user_mentions, :commit_id, :string
+
+ # change_column_type_concurrently creates a new index for new column `commit_id_for_type` based on existing
+ # `temp_commit_id_and_note_id_index` naming it `temp_commit_id_for_type_change_and_note_id_index`, yet keeping
+ # `temp_commit_id_and_note_id_index` for `commit_id`, that will be cleaned
+ # by `cleanup_concurrent_column_type_change :commit_user_mentions, :commit_id` in a later migration.
+ #
+ # So we'll rename `temp_commit_id_for_type_change_and_note_id_index` to initialy intended name: `commit_id_and_note_id_index`.
+
+ add_concurrent_index :commit_user_mentions, [:commit_id_for_type_change, :note_id], name: NEW_INDEX
+ remove_concurrent_index_by_name :commit_user_mentions, NEW_TMP_INDEX
+ end
+
+ def down
+ cleanup_concurrent_column_type_change :commit_user_mentions, :commit_id
+ end
+end
diff --git a/db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb b/db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb
new file mode 100644
index 00000000000..aed9d335af9
--- /dev/null
+++ b/db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+class ChangeCommitUserMentionsCommitIdColumnTypeCleanup < ActiveRecord::Migration[5.2]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ NEW_INDEX = 'commit_id_for_type_change_and_note_id_index'
+ OLD_INDEX = 'commit_user_mentions_on_commit_id_and_note_id_index'
+
+ def up
+ cleanup_concurrent_column_type_change :commit_user_mentions, :commit_id
+ end
+
+ def down
+ change_column_type_concurrently :commit_user_mentions, :commit_id, :binary
+
+ # change_column_type_concurrently creates a new index based on existing commit_id_and_note_id_index` naming it
+ # `commit_id_for_type_change_and_note_id_index` so we'll rename it back to its original name.
+ add_concurrent_index :commit_user_mentions, [:commit_id_for_type_change, :note_id], name: OLD_INDEX
+ remove_concurrent_index_by_name :commit_user_mentions, NEW_INDEX
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 67d305a3505..2422bb35cbd 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2019_12_17_160632) do
+ActiveRecord::Schema.define(version: 2019_12_16_183532) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_trgm"
@@ -1217,11 +1217,11 @@ ActiveRecord::Schema.define(version: 2019_12_17_160632) do
create_table "commit_user_mentions", force: :cascade do |t|
t.integer "note_id", null: false
- t.binary "commit_id", null: false
t.integer "mentioned_users_ids", array: true
t.integer "mentioned_projects_ids", array: true
t.integer "mentioned_groups_ids", array: true
- t.index ["commit_id", "note_id"], name: "commit_user_mentions_on_commit_id_and_note_id_index"
+ t.string "commit_id", null: false
+ t.index ["commit_id", "note_id"], name: "commit_id_and_note_id_index"
t.index ["note_id"], name: "index_commit_user_mentions_on_note_id", unique: true
end