discourse/db/migrate/20150914034541_add_views_to...

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-13 23:50:59 -04:00
def change
add_column :user_profiles, :views, :integer, default: 0, null: false
end
end