Files
discourse/db/migrate/20150914034541_add_views_to_user_profile.rb
T

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

8 lines
186 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddViewsToUserProfile < ActiveRecord::Migration[4.2]
2015-09-14 11:50:59 +08:00
def change
add_column :user_profiles, :views, :integer, default: 0, null: false
end
end