Class: AddCountToSongRefTable

Inherits:
Object
  • Object
show all
Defined in:
lib/gdshowsdb/db/migrations/008_add_count_to_song_ref_table.rb

Instance Method Summary collapse

Instance Method Details

#downObject



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

#upObject



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