15 lines
302 B
Ruby
15 lines
302 B
Ruby
class RemoveE621UserPostFavRows < ActiveRecord::Migration[7.2]
|
|
def up
|
|
execute <<-SQL
|
|
DELETE FROM domain_user_post_favs
|
|
WHERE user_id IN (
|
|
SELECT base_table_id FROM domain_users_e621_aux
|
|
)
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|