Files
discourse/db/migrate/20140224232712_add_profile_background_to_user.rb
T

6 lines
146 B
Ruby
Raw Normal View History

2014-02-28 21:12:51 +01:00
class AddProfileBackgroundToUser < ActiveRecord::Migration
def change
add_column :users, :profile_background, :string, limit: 255
end
2015-04-24 13:10:43 -04:00
end