Class: AddCountToSongRefTable
- Inherits:
-
Object
- Object
- AddCountToSongRefTable
- Defined in:
- lib/gdshowsdb/db/migrations/008_add_count_to_song_ref_table.rb
Instance Method Summary collapse
Instance Method Details
#down ⇒ Object
7 8 9 |
# File 'lib/gdshowsdb/db/migrations/008_add_count_to_song_ref_table.rb', line 7 def down remove_column :song_refs, :song_occurences_count end |
#up ⇒ Object
3 4 5 |
# File 'lib/gdshowsdb/db/migrations/008_add_count_to_song_ref_table.rb', line 3 def up add_column :song_refs, :song_occurences_count, :integer, :default => 0 end |