gitlabhq/db/migrate/20111027152724_issue_conten_to_note.rb

12 lines
175 B
Ruby
Raw Normal View History

2011-10-27 17:46:30 +02:00
class IssueContenToNote < ActiveRecord::Migration
def up
raise "Not ready"
Issue.find_each(:batch_size => 100) do |issue|
end
end
def down
end
end