diff options
author | Patricio Cano <suprnova32@gmail.com> | 2016-06-30 15:11:52 -0500 |
---|---|---|
committer | Patricio Cano <suprnova32@gmail.com> | 2016-07-05 16:54:22 -0500 |
commit | cb24650ab8558b716fce286afdde56737da9bbb4 (patch) | |
tree | 2c73b4848107fa2b51e471e0c242c3de268fc1d1 /db/schema.rb | |
parent | 2e96fcff12a8944b1f9bd5179381094ed4498bd5 (diff) | |
download | gitlab-ce-cb24650ab8558b716fce286afdde56737da9bbb4.tar.gz |
Rebasing caused `enabled_git_access_protocol` to become plural. Fixed here.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index e0fe35f6b5f..f6465136e6a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -86,7 +86,7 @@ ActiveRecord::Schema.define(version: 20160705163108) do t.integer "container_registry_token_expire_delay", default: 5 t.text "after_sign_up_text" t.string "repository_storage", default: "default" - t.string "enabled_git_access_protocols" + t.string "enabled_git_access_protocol" end create_table "audit_events", force: :cascade do |t| |