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:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-11-16 16:56:30 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-11-16 16:56:30 +0300
commitd64183e1fa26ab77107e3a2a20be1fe4df3a1875 (patch)
tree00d7b51545c116ce67bb857fd1003ea381250584 /db/schema.rb
parentc60437786bfe43344b4a5eb040437f73f37c6396 (diff)
Add most of specs for chat names
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5f25f0a305f..1c1a7a37096 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -152,15 +152,16 @@ ActiveRecord::Schema.define(version: 20161113184239) do
create_table "chat_names", force: :cascade do |t|
t.integer "user_id", null: false
t.integer "service_id", null: false
- t.string "team_id"
+ t.string "team_id", null: false
t.string "team_domain"
- t.string "chat_id"
+ t.string "chat_id", null: false
t.string "chat_name"
- t.datetime "created_at"
- t.datetime "updated_at"
+ t.datetime "used_at"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
end
- add_index "chat_names", ["service_id", "team_id", "user_id"], name: "index_chat_names_on_service_id_and_team_id_and_user_id", unique: true, using: :btree
+ add_index "chat_names", ["service_id", "team_id", "chat_id"], name: "index_chat_names_on_service_id_and_team_id_and_chat_id", unique: true, using: :btree
add_index "chat_names", ["user_id", "service_id"], name: "index_chat_names_on_user_id_and_service_id", unique: true, using: :btree
create_table "ci_application_settings", force: :cascade do |t|