A lot of cleanup is still needed, refactoring the CSS to be consistent, removing all sorts of unused stuff etc
9 lines
184 B
Ruby
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
|