diaspora/db/migrate/20120909053122_remove_wallpaper_from_profile.rb
2012-09-11 21:52:53 -05:00

7 lines
175 B
Ruby

class RemoveWallpaperFromProfile < ActiveRecord::Migration
def up
add_column :profiles, :wallpaper, :string
end
def down
remove_column: profiles, :wallpaper
end