summaryrefslogtreecommitdiff
path: root/db/migrate/20160705054952_add_protected_branches_merge_access.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160705054952_add_protected_branches_merge_access.rb')
-rw-r--r--db/migrate/20160705054952_add_protected_branches_merge_access.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20160705054952_add_protected_branches_merge_access.rb b/db/migrate/20160705054952_add_protected_branches_merge_access.rb
index 51a52a5ac17..9b18a2061b3 100644
--- a/db/migrate/20160705054952_add_protected_branches_merge_access.rb
+++ b/db/migrate/20160705054952_add_protected_branches_merge_access.rb
@@ -9,7 +9,7 @@ class AddProtectedBranchesMergeAccess < ActiveRecord::Migration
create_table :protected_branch_merge_access_levels do |t|
t.references :protected_branch, index: { name: "index_protected_branch_merge_access" }, foreign_key: true, null: false
- # Gitlab::Access::MASTER == 40
+ # Gitlab::Access::MAINTAINER == 40
t.integer :access_level, default: 40, null: false
t.timestamps null: false