discourse/plugins/discourse-lazy-videos/db/migrate/20230317194217_rebake_lazy_...

15 lines
253 B
Ruby

# frozen_string_literal: true
class RebakeLazyYtPosts < ActiveRecord::Migration[7.0]
def up
execute <<~SQL
UPDATE posts SET baked_version = 0
WHERE cooked LIKE '%lazyYT-container%'
SQL
end
def down
# do nothing
end
end