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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-22 00:17:58 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-22 00:17:58 +0400
commitfe514b17ab6de8c9d1f091e50e94aaf27183aa6d (patch)
treedcf7c9eff8d2a2693b5a1435e41e404521d19a48 /db
parentf3cbbfe020678d6734573bc3f21b53f8c2668070 (diff)
Adding groups to notification settings
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb13
1 files changed, 7 insertions, 6 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 415e9723456..500828a97e2 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20130617095603) do
+ActiveRecord::Schema.define(:version => 20130621195223) do
create_table "deploy_keys_projects", :force => true do |t|
t.integer "deploy_key_id", :null => false
@@ -301,11 +301,12 @@ ActiveRecord::Schema.define(:version => 20130617095603) do
add_index "users", ["username"], :name => "index_users_on_username"
create_table "users_groups", :force => true do |t|
- t.integer "group_access", :null => false
- t.integer "group_id", :null => false
- t.integer "user_id", :null => false
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.integer "group_access", :null => false
+ t.integer "group_id", :null => false
+ t.integer "user_id", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.integer "notification_level", :default => 3, :null => false
end
create_table "users_projects", :force => true do |t|