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>2012-11-19 22:24:05 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-11-19 22:24:05 +0400
commit95c23b2f974ec15e89cd7e762c80af0fa0ce57a5 (patch)
treef37af5b6d4c92f9733298b6894dd6f24057e9cae /db
parentc3b074acab554fc40a8fcb6060ed7ab10e4171a4 (diff)
Annotated. schema updated
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index e7eb5696b0e..b11542704af 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 => 20121026114600) do
+ActiveRecord::Schema.define(:version => 20121120051432) do
create_table "events", :force => true do |t|
t.string "target_type"
@@ -127,6 +127,15 @@ ActiveRecord::Schema.define(:version => 20121026114600) do
t.datetime "updated_at", :null => false
end
+ create_table "services", :force => true do |t|
+ t.string "type"
+ t.string "title"
+ t.string "token"
+ t.integer "project_id", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
create_table "snippets", :force => true do |t|
t.string "title"
t.text "content"
@@ -203,6 +212,7 @@ ActiveRecord::Schema.define(:version => 20121026114600) do
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "type", :default => "ProjectHook"
+ t.integer "service_id"
end
create_table "wikis", :force => true do |t|