oldhaven/db/migrate/20110914163231_add_status_to_albums.rb
Gregory Eremin da97b4d4fc Album status
2011-09-14 20:54:39 +04:00

6 lines
115 B
Ruby

class AddStatusToAlbums < ActiveRecord::Migration
def change
add_column :albums, :status, :integer
end
end