discourse/db/migrate/20120830182736_add_preview_to_onebox_renders.rb

12 lines
329 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddPreviewToOneboxRenders < ActiveRecord::Migration[4.2]
2013-02-05 13:16:51 -06:00
def change
add_column :onebox_renders, :preview, :text, null: true
# Blow away the cache, so we can start saving previews too.
execute "DELETE FROM onebox_renders"
execute "DELETE FROM post_onebox_renders"
end
end