Class: ImportSongRefs
- Inherits:
-
Object
- Object
- ImportSongRefs
- Defined in:
- lib/gdshowsdb/db/migrations/002_import_song_refs.rb
Instance Method Summary collapse
Instance Method Details
#down ⇒ Object
11 12 13 |
# File 'lib/gdshowsdb/db/migrations/002_import_song_refs.rb', line 11 def down SongRef.delete_all end |
#up ⇒ Object
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 |