mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
9 lines
181 B
Ruby
9 lines
181 B
Ruby
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
|