Commit 64fddd5375fd03b1b9f49e487e05cb01a5968ded

Authored by Rodrigo Souto
1 parent c45dca16

profile-suggestions: add migration to create initial suggestions

db/migrate/20140805205626_bootstrap_profile_suggestions.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class BootstrapProfileSuggestions < ActiveRecord::Migration
  2 + def up
  3 + ProfileSuggestion.generate_all_profile_suggestions
  4 + end
  5 +
  6 + def down
  7 + ProfileSuggestion.delete_all
  8 + end
  9 +end
... ...