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:
authorgitlabhq <m@gitlabhq.com>2011-10-27 19:46:30 +0400
committergitlabhq <m@gitlabhq.com>2011-10-27 19:46:30 +0400
commit56d9761844b2665e9e48d50f15f7ac3a63d60618 (patch)
tree490eafdb4173d4dfb62d32f992c9bf35058d3ef9 /db
parent2258db66c2e8ddccc1716b92f9d9a3a1cb3eff7f (diff)
moving out of body
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20111027152724_issue_conten_to_note.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20111027152724_issue_conten_to_note.rb b/db/migrate/20111027152724_issue_conten_to_note.rb
new file mode 100644
index 00000000000..15d96c30b43
--- /dev/null
+++ b/db/migrate/20111027152724_issue_conten_to_note.rb
@@ -0,0 +1,11 @@
+class IssueContenToNote < ActiveRecord::Migration
+ def up
+ raise "Not ready"
+ Issue.find_each(:batch_size => 100) do |issue|
+
+ end
+ end
+
+ def down
+ end
+end