summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-22 17:21:05 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-22 17:21:05 +0300
commit8bc0a06cd4e389f8004f5c0be8caabef9c75cb38 (patch)
treeaa9bc2f8ff40c8235e31b70d7d6e3e7b4e52582e /db/schema.rb
parent3a22631dd347333036b4eec62e96be1196c1ee27 (diff)
downloadgitlab-ce-8bc0a06cd4e389f8004f5c0be8caabef9c75cb38.tar.gz
Add more fields to project service model
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index d2fa70cc374..6a16caf59d8 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 => 20130506095501) do
+ActiveRecord::Schema.define(:version => 20130522141856) do
create_table "deploy_keys_projects", :force => true do |t|
t.integer "deploy_key_id", :null => false
@@ -194,6 +194,8 @@ ActiveRecord::Schema.define(:version => 20130506095501) do
t.datetime "updated_at", :null => false
t.boolean "active", :default => false, :null => false
t.string "project_url"
+ t.string "subdomain"
+ t.string "room"
end
add_index "services", ["project_id"], :name => "index_services_on_project_id"