diff --git a/db/migrate/20160407160756_remove_user_firsts.rb b/db/migrate/20160407160756_remove_user_firsts.rb index 2fda4c75f8e..dfbd230442c 100644 --- a/db/migrate/20160407160756_remove_user_firsts.rb +++ b/db/migrate/20160407160756_remove_user_firsts.rb @@ -1,5 +1,8 @@ class RemoveUserFirsts < ActiveRecord::Migration def up drop_table :user_firsts + rescue + # continues with other migrations if we can't delete that table + nil end end