mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 11:38:36 +08:00
6 lines
122 B
Ruby
6 lines
122 B
Ruby
|
class AddUserFirstVisit < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :users, :first_seen_at, :datetime
|
||
|
end
|
||
|
end
|