mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
10 lines
307 B
Ruby
10 lines
307 B
Ruby
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
|