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:
authorStan Hu <stanhu@gmail.com>2017-03-25 01:06:36 +0300
committerStan Hu <stanhu@gmail.com>2017-03-25 01:06:36 +0300
commitda74e97c894fa0ef24e520a2cfca92335bba5a99 (patch)
treeed2323ed061c5a7280b9796503d5644124071103 /db/schema.rb
parente1bb8c99cf7840c8b5d981111857b7d16b9cc1bd (diff)
Use default_value_for to set notified_of_own_activity instead of using a DB migration
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 47833b7e518..f476637ceb2 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1236,7 +1236,7 @@ ActiveRecord::Schema.define(version: 20170317203554) do
t.string "organization"
t.boolean "authorized_projects_populated"
t.boolean "ghost"
- t.boolean "notified_of_own_activity", default: false, null: false
+ t.boolean "notified_of_own_activity"
end
add_index "users", ["admin"], name: "index_users_on_admin", using: :btree