mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 22:34:47 +00:00
10 lines
242 B
Ruby
10 lines
242 B
Ruby
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
|