1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20150706215111_add_mobile_to_user_visits.rb

6 lines
140 B
Ruby
Raw Normal View History

class AddMobileToUserVisits < ActiveRecord::Migration
def change
add_column :user_visits, :mobile, :boolean, default: false
end
end