Commit 81d44ae4 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Try to reset the migration properly

parent bff4984d
......@@ -6,7 +6,11 @@ class RemoveUserExternalMailColumns < ActiveRecord::Migration
DOWNTIME = false
def change
def up
remove_column :users, :external_email, :boolean
end
def down
add_column :users, :external_email, :boolean
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment