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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-06 16:10:05 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-06 16:10:05 +0400
commit8e4625af614b58df97d60031c2b5c72f37f1a692 (patch)
tree98ea623cfccc5c159013d26388ba551981ab16f9 /db/schema.rb
parentb7f1cf9f491f6cefdfc5f651f724331f07cfd6f5 (diff)
Remove project_id from keys table
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 251868f9237..d2fa70cc374 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 => 20130506090604) do
+ActiveRecord::Schema.define(:version => 20130506095501) do
create_table "deploy_keys_projects", :force => true do |t|
t.integer "deploy_key_id", :null => false
@@ -76,12 +76,10 @@ ActiveRecord::Schema.define(:version => 20130506090604) do
t.text "key"
t.string "title"
t.string "identifier"
- t.integer "project_id"
t.string "type"
end
add_index "keys", ["identifier"], :name => "index_keys_on_identifier"
- add_index "keys", ["project_id"], :name => "index_keys_on_project_id"
add_index "keys", ["user_id"], :name => "index_keys_on_user_id"
create_table "merge_requests", :force => true do |t|