diff options
author | gitlabhq <m@gitlabhq.com> | 2011-10-27 18:46:30 +0300 |
---|---|---|
committer | gitlabhq <m@gitlabhq.com> | 2011-10-27 18:46:30 +0300 |
commit | 56d9761844b2665e9e48d50f15f7ac3a63d60618 (patch) | |
tree | 490eafdb4173d4dfb62d32f992c9bf35058d3ef9 /db/migrate | |
parent | 2258db66c2e8ddccc1716b92f9d9a3a1cb3eff7f (diff) | |
download | gitlab-ce-56d9761844b2665e9e48d50f15f7ac3a63d60618.tar.gz |
moving out of body
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20111027152724_issue_conten_to_note.rb | 11 |
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 |