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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
182 B
Ruby
Raw Normal View History

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