mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
98c479c3c4
Shares a modified codebase with avatars called "user_image"
5 lines
145 B
Ruby
5 lines
145 B
Ruby
class AddProfileBackgroundToUser < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :profile_background, :string, limit: 255
|
|
end
|
|
end |