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:
authorJames Edwards-Jones <jedwardsjones@gitlab.com>2017-03-16 01:26:48 +0300
committerJames Edwards-Jones <jedwardsjones@gitlab.com>2017-03-31 21:36:54 +0300
commit1a416a42f1c1b876ecd96687e41696bc915cc2c2 (patch)
tree95b1cbdf72d81cbb06b63e28986016e18010358e
parent99859b01f4dad72dc51c0765db89800915a94f36 (diff)
Database migrations for protected tags
Added schema.rb for protected tags
-rw-r--r--db/migrate/20170309173138_create_protected_tags.rb39
-rw-r--r--db/schema.rb30
2 files changed, 68 insertions, 1 deletions
diff --git a/db/migrate/20170309173138_create_protected_tags.rb b/db/migrate/20170309173138_create_protected_tags.rb
new file mode 100644
index 00000000000..c69ef970410
--- /dev/null
+++ b/db/migrate/20170309173138_create_protected_tags.rb
@@ -0,0 +1,39 @@
+class CreateProtectedTags < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ # Set this constant to true if this migration requires downtime.
+ DOWNTIME = false
+
+ GitlabAccessMaster = 40
+
+ def change
+ create_table :protected_tags do |t|
+ t.integer :project_id, null: false
+ t.string :name, null: false
+ t.string :timestamps #TODO: `null: false`? Missing from protected_branches
+ end
+
+ add_index :protected_tags, :project_id
+
+ create_table :protected_tag_merge_access_levels do |t|
+ t.references :protected_tag, index: { name: "index_protected_tag_merge_access" }, foreign_key: true, null: false
+
+ t.integer :access_level, default: GitlabAccessMaster, null: true #TODO: was false, check schema
+ t.integer :group_id #TODO: check why group/user id missing from CE
+ t.integer :user_id
+ t.timestamps null: false
+ end
+
+ create_table :protected_tag_push_access_levels do |t|
+ t.references :protected_tag, index: { name: "index_protected_tag_push_access" }, foreign_key: true, null: false
+ t.integer :access_level, default: GitlabAccessMaster, null: true #TODO: was false, check schema
+ t.integer :group_id
+ t.integer :user_id
+ t.timestamps null: false
+ end
+
+ #TODO: These had rubocop set to disable Migration/AddConcurrentForeignKey
+ # add_foreign_key :protected_tag_merge_access_levels, :namespaces, column: :group_id
+ # add_foreign_key :protected_tag_push_access_levels, :namespaces, column: :group_id
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index f96a7d21890..05b28b6a63b 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: 20170315194013) do
+ActiveRecord::Schema.define(version: 20170317203554) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -963,6 +963,32 @@ ActiveRecord::Schema.define(version: 20170315194013) do
add_index "protected_branches", ["project_id"], name: "index_protected_branches_on_project_id", using: :btree
+ create_table "protected_tag_merge_access_levels", force: :cascade do |t|
+ t.integer "protected_tag_id", null: false
+ t.integer "access_level", default: 40, null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ add_index "protected_tag_merge_access_levels", ["protected_tag_id"], name: "index_protected_tag_merge_access", using: :btree
+
+ create_table "protected_tag_push_access_levels", force: :cascade do |t|
+ t.integer "protected_tag_id", null: false
+ t.integer "access_level", default: 40, null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ add_index "protected_tag_push_access_levels", ["protected_tag_id"], name: "index_protected_tag_push_access", using: :btree
+
+ create_table "protected_tags", force: :cascade do |t|
+ t.integer "project_id", null: false
+ t.string "name", null: false
+ t.string "timestamps"
+ end
+
+ add_index "protected_tags", ["project_id"], name: "index_protected_tags_on_project_id", using: :btree
+
create_table "releases", force: :cascade do |t|
t.string "tag"
t.text "description"
@@ -1305,6 +1331,8 @@ ActiveRecord::Schema.define(version: 20170315194013) do
add_foreign_key "project_statistics", "projects", on_delete: :cascade
add_foreign_key "protected_branch_merge_access_levels", "protected_branches"
add_foreign_key "protected_branch_push_access_levels", "protected_branches"
+ add_foreign_key "protected_tag_merge_access_levels", "protected_tags"
+ add_foreign_key "protected_tag_push_access_levels", "protected_tags"
add_foreign_key "subscriptions", "projects", on_delete: :cascade
add_foreign_key "timelogs", "issues", name: "fk_timelogs_issues_issue_id", on_delete: :cascade
add_foreign_key "timelogs", "merge_requests", name: "fk_timelogs_merge_requests_merge_request_id", on_delete: :cascade