0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/db/migrate/20160407160756_remove_user_firsts.rb

14 lines
327 B
Ruby
Vendored

# frozen_string_literal: true
class RemoveUserFirsts < ActiveRecord::Migration[4.2]
def up
drop_table(:user_firsts) if table_exists?(:user_firsts)
rescue StandardError
# continues with other migrations if we can't delete that table
nil
end
def down
raise ActiveRecord::IrreversibleMigration
end
end