mirror of
https://github.com/discourse/discourse.git
synced 2025-06-01 17:40:43 +08:00
Add records that indicate a user's avatar has been checked
This commit is contained in:
10
db/migrate/20130912185218_acting_user_null.rb
Normal file
10
db/migrate/20130912185218_acting_user_null.rb
Normal file
@ -0,0 +1,10 @@
|
||||
class ActingUserNull < ActiveRecord::Migration
|
||||
def up
|
||||
change_column :user_histories, :acting_user_id, :integer, :null => true
|
||||
end
|
||||
|
||||
def down
|
||||
execute "DELETE FROM user_histories WHERE acting_user_id IS NULL"
|
||||
change_column :user_histories, :acting_user_id, :integer, :null => false
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user