2017-08-31 00:06:56 -04:00
|
|
|
class AddPreviewToOneboxRenders < ActiveRecord::Migration[4.2]
|
2013-02-05 14:16:51 -05: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
|