Class: ImportSongRefs

Inherits:
Object
  • Object
show all
Defined in:
lib/gdshowsdb/db/migrations/002_import_song_refs.rb

Instance Method Summary collapse

Instance Method Details

#downObject



11
12
13
# File 'lib/gdshowsdb/db/migrations/002_import_song_refs.rb', line 11

def down
  SongRef.delete_all
end

#upObject



5
6
7
8
9
# File 'lib/gdshowsdb/db/migrations/002_import_song_refs.rb', line 5

def up    
  Gdshowsdb::SongRefYAMLParser.from_yaml.parse.each do |song_ref_hash|
    SongRef.create_from(song_ref_hash)
  end    
end