mirror of
https://github.com/discourse/discourse.git
synced 2026-08-13 06:25:11 -05:00
FEATURE: Add new_since column to UserStat so we can reset the "New"
date.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class AddNewSinceToUserStats < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :user_stats, :new_since, :datetime
|
||||
execute "UPDATE user_stats AS us
|
||||
SET new_since = u.created_at
|
||||
FROM users AS u
|
||||
WHERE u.id = us.user_id"
|
||||
change_column :user_stats, :new_since, :datetime, null: false
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user