mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:54:23 +08:00
11 lines
263 B
Ruby
11 lines
263 B
Ruby
# 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
|
|
end
|