Add records that indicate a user's avatar has been checked

This commit is contained in:
Robin Ward
2013-09-12 14:58:20 -04:00
parent 4599e5d732
commit 3fcd331d43
3 changed files with 17 additions and 2 deletions

View 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