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
path: root/db
diff options
context:
space:
mode:
authorFelipe Artur <felipefac@gmail.com>2016-03-17 03:23:59 +0300
committerFelipe Artur <felipefac@gmail.com>2016-03-17 03:23:59 +0300
commita18ac62756573a2da2c42ca50b6f30033be6fa63 (patch)
tree6f95ea299b1accf8cbc559478a59eeaeeb15d95b /db
parent44c127447b5a3cfc7aaea6f19e18baf9f42ad500 (diff)
Block internal groups/projects visibility to external users
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index f5e3e5bc861..f1bccd62745 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -777,9 +777,9 @@ ActiveRecord::Schema.define(version: 20160314143402) do
t.string "type"
t.string "title"
t.integer "project_id"
- t.datetime "created_at"
- t.datetime "updated_at"
- t.boolean "active", default: false, null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.boolean "active", null: false
t.text "properties"
t.boolean "template", default: false
t.boolean "push_events", default: true