summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-06-22 15:54:23 +0000
committerLin Jen-Shin <godfat@godfat.org>2017-06-22 15:54:23 +0000
commit5725b3769fdfbffc86bcea72d26197391f538759 (patch)
tree8be1bf4987be69d3067eda5222acc9fc5d302654 /db
parentd9ad56f3c5a7fc5e682ec96731b0578719934122 (diff)
downloadgitlab-ce-5725b3769fdfbffc86bcea72d26197391f538759.tar.gz
Remove duplicated records and add unique constraint
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20170622135451_remove_duplicated_variable.rb45
-rw-r--r--db/migrate/20170622135628_add_environment_scope_to_ci_variables.rb (renamed from db/migrate/20170612150426_add_environment_scope_to_ci_variables.rb)0
-rw-r--r--db/migrate/20170622135728_add_unique_constraint_to_ci_variables.rb23
-rw-r--r--db/schema.rb4
4 files changed, 70 insertions, 2 deletions
diff --git a/db/migrate/20170622135451_remove_duplicated_variable.rb b/db/migrate/20170622135451_remove_duplicated_variable.rb
new file mode 100644
index 00000000000..bd3aa3f5323
--- /dev/null
+++ b/db/migrate/20170622135451_remove_duplicated_variable.rb
@@ -0,0 +1,45 @@
+class RemoveDuplicatedVariable < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ if Gitlab::Database.postgresql?
+ execute <<~SQL
+ DELETE FROM ci_variables var USING (#{duplicated_ids}) dup
+ #{join_conditions}
+ SQL
+ else
+ execute <<~SQL
+ DELETE var FROM ci_variables var INNER JOIN (#{duplicated_ids}) dup
+ #{join_conditions}
+ SQL
+ end
+ end
+
+ def down
+ # noop
+ end
+
+ def duplicated_ids
+ <<~SQL
+ SELECT MAX(id) AS id, #{key}, project_id
+ FROM ci_variables GROUP BY #{key}, project_id
+ SQL
+ end
+
+ def join_conditions
+ <<~SQL
+ WHERE var.key = dup.key
+ AND var.project_id = dup.project_id
+ AND var.id <> dup.id
+ SQL
+ end
+
+ def key
+ # key needs to be quoted in MySQL
+ quote_column_name('key')
+ end
+end
diff --git a/db/migrate/20170612150426_add_environment_scope_to_ci_variables.rb b/db/migrate/20170622135628_add_environment_scope_to_ci_variables.rb
index 17fe062d8d5..17fe062d8d5 100644
--- a/db/migrate/20170612150426_add_environment_scope_to_ci_variables.rb
+++ b/db/migrate/20170622135628_add_environment_scope_to_ci_variables.rb
diff --git a/db/migrate/20170622135728_add_unique_constraint_to_ci_variables.rb b/db/migrate/20170622135728_add_unique_constraint_to_ci_variables.rb
new file mode 100644
index 00000000000..f953cd66414
--- /dev/null
+++ b/db/migrate/20170622135728_add_unique_constraint_to_ci_variables.rb
@@ -0,0 +1,23 @@
+class AddUniqueConstraintToCiVariables < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ unless index_exists?(:ci_variables, columns)
+ add_concurrent_index(:ci_variables, columns, unique: true)
+ end
+ end
+
+ def down
+ if index_exists?(:ci_variables, columns)
+ remove_concurrent_index(:ci_variables, columns)
+ end
+ end
+
+ def columns
+ @columns ||= [:project_id, :key, :environment_scope]
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 006122bc7c7..fa66d515a0d 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20170621102400) do
+ActiveRecord::Schema.define(version: 20170622135728) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -377,7 +377,7 @@ ActiveRecord::Schema.define(version: 20170621102400) do
t.string "environment_scope", default: "*", null: false
end
- add_index "ci_variables", ["project_id"], name: "index_ci_variables_on_project_id", using: :btree
+ add_index "ci_variables", ["project_id", "key", "environment_scope"], name: "index_ci_variables_on_project_id_and_key_and_environment_scope", unique: true, using: :btree
create_table "container_repositories", force: :cascade do |t|
t.integer "project_id", null: false