discourse/db/migrate/20160326001747_add_user_first_visit.rb

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

8 lines
158 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddUserFirstVisit < ActiveRecord::Migration[4.2]
def change
add_column :users, :first_seen_at, :datetime
end
end