mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:53:41 +08:00
6 lines
146 B
Ruby
6 lines
146 B
Ruby
class AddProfileBackgroundToUser < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :profile_background, :string, limit: 255
|
|
end
|
|
end
|