OSDN Git Service

Add iid field to issues and MR
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Mon, 19 Aug 2013 19:10:21 +0000 (22:10 +0300)
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Mon, 19 Aug 2013 19:10:21 +0000 (22:10 +0300)
db/migrate/20130819182730_add_internal_ids_to_issues_and_mr.rb [new file with mode: 0644]
db/schema.rb

diff --git a/db/migrate/20130819182730_add_internal_ids_to_issues_and_mr.rb b/db/migrate/20130819182730_add_internal_ids_to_issues_and_mr.rb
new file mode 100644 (file)
index 0000000..e55ae38
--- /dev/null
@@ -0,0 +1,6 @@
+class AddInternalIdsToIssuesAndMr < ActiveRecord::Migration
+  def change
+    add_column :issues, :iid, :integer
+    add_column :merge_requests, :iid, :integer
+  end
+end
index e0e7d47..c2ba5b6 100644 (file)
@@ -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"