This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20130912185218_acting_user_null.rb

11 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