10 lines
164 B
Ruby
10 lines
164 B
Ruby
|
class AddNoteToAlbum < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :albums, :note, :text
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :albums, :note
|
||
|
end
|
||
|
end
|