Commit adf1a5918fc593eefb7d3329fb6eb1ed1952af3f
1 parent
337eca2d
Exists in
master
and in
1 other branch
fix typo
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
db/migrate/20121003223358_extract_backtraces.rb
1 | 1 | class ExtractBacktraces < Mongoid::Migration |
2 | 2 | def self.up |
3 | - say "Please it could take long time (hours if you have many Notices)" | |
3 | + say "It could take long time (hours if you have many Notices)" | |
4 | 4 | Notice.unscoped.all.each do |notice| |
5 | 5 | backtrace = Backtrace.find_or_create(:raw => notice['backtrace']) |
6 | 6 | notice.backtrace = backtrace | ... | ... |