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-08-19 23:10:21 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-19 23:10:21 +0400
commit125c07fa0aa31e6c83c8fcc90df623c2ef85832f (patch)
tree0955febd36b8cbe44b18353081cb48253936d290 /db/schema.rb
parent4250c349152e252ff36bab54c53d7b267a5b1232 (diff)
Add iid field to issues and MR
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 e0e7d47b92e..c2ba5b65fc3 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 => 20130812143708) do
+ActiveRecord::Schema.define(:version => 20130819182730) do
create_table "deploy_keys_projects", :force => true do |t|
t.integer "deploy_key_id", :null => false
@@ -62,6 +62,7 @@ ActiveRecord::Schema.define(:version => 20130812143708) do
t.text "description"
t.integer "milestone_id"
t.string "state"
+ t.integer "iid"
end
add_index "issues", ["assignee_id"], :name => "index_issues_on_assignee_id"
@@ -98,6 +99,7 @@ ActiveRecord::Schema.define(:version => 20130812143708) do
t.string "state"
t.string "merge_status"
t.integer "target_project_id", :null => false
+ t.integer "iid"
end
add_index "merge_requests", ["assignee_id"], :name => "index_merge_requests_on_assignee_id"