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:
authormiks <miks@cubesystems.lv>2011-12-30 00:00:50 +0400
committermiks <miks@cubesystems.lv>2011-12-30 00:00:50 +0400
commitafa7f3a17a3f798fa9ff1776b21b0f19e0e51f0c (patch)
treee86204175e3652de7a2ad1678b9315806220b6c6 /db
parentf8ad4d2b422af14d57c2c8d49134ef0ef60a1695 (diff)
DB schema updated
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 3014579c16f..f6ac7d8d9b7 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,16 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20111220190817) do
+ActiveRecord::Schema.define(:version => 20111225202855) do
+
+ create_table "deploy_keys", :force => true do |t|
+ t.integer "project_id", :null => false
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ t.text "key"
+ t.string "title"
+ t.string "identifier"
+ end
create_table "issues", :force => true do |t|
t.string "title"