mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 09:10:25 +08:00
8 lines
218 B
Ruby
8 lines
218 B
Ruby
class RemoveUserFirsts < ActiveRecord::Migration[4.2]
|
|
def up
|
|
drop_table(:user_firsts) if table_exists?(:user_firsts)
|
|
rescue
|
|
# continues with other migrations if we can't delete that table
|
|
nil
|
|
end
|
|
end
|