Merge pull request #15 from ignisf/remove-slugs
Remove failing slugs migration
This commit is contained in:
commit
1a662d4c4c
|
@ -1,13 +0,0 @@
|
||||||
class CreateSlugsForExistingConferences < ActiveRecord::Migration
|
|
||||||
class Conference < ActiveRecord::Base
|
|
||||||
end
|
|
||||||
|
|
||||||
def change
|
|
||||||
Globalize.with_locale(:en) do
|
|
||||||
Conference.find_each do |c|
|
|
||||||
c.slug = c.title.gsub(/\s+/, '-')
|
|
||||||
c.save!
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
Loading…
Reference in New Issue