diff options
author | Felipe Artur <felipefac@gmail.com> | 2016-03-21 19:11:24 -0300 |
---|---|---|
committer | Felipe Artur <felipefac@gmail.com> | 2016-03-21 19:11:24 -0300 |
commit | 8d544645f0ef114586212835cf011a3e268c9ec1 (patch) | |
tree | 4ffb1d46f923bfe2f25b194f9ad0411b3a5e008e /db/schema.rb | |
parent | 261569b2466e455ff308cc54fb1db51bc8dc2880 (diff) | |
download | gitlab-ce-8d544645f0ef114586212835cf011a3e268c9ec1.tar.gz |
Add specs and add visibility level to admin groups
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index 11ae4815801..8537e5729a7 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -77,7 +77,6 @@ ActiveRecord::Schema.define(version: 20160320204112) do t.boolean "akismet_enabled", default: false t.string "akismet_api_key" t.boolean "email_author_in_body", default: false - t.integer "default_group_visibility" end create_table "audit_events", force: :cascade do |t| @@ -417,7 +416,7 @@ ActiveRecord::Schema.define(version: 20160320204112) do t.string "state" t.integer "iid" t.integer "updated_by_id" - t.boolean "confidential", default: false + t.boolean "confidential", default: false end add_index "issues", ["assignee_id"], name: "index_issues_on_assignee_id", using: :btree |