diaspora/db/migrate/20120909053122_remove_wallpaper_from_profile.rb
Jonne Haß 7ec2f8f419 finish beta striping
A lot of cleanup is still needed, refactoring the CSS to be consistent, removing all sorts of unused stuff etc
2012-09-12 07:51:19 +02:00

9 lines
184 B
Ruby

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