1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 14:49:38 +02:00
Maybe/db/migrate/20241029184115_remove_prices_missing_issue.rb

10 lines
242 B
Ruby
Raw Normal View History

2024-10-29 14:55:46 -04:00
class RemovePricesMissingIssue < ActiveRecord::Migration[7.2]
def up
execute "DELETE FROM issues WHERE type = 'Issue::PricesMissing'"
end
def down
# Cannot restore deleted issues since we don't have the original data
end
end