mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
9 lines
293 B
Ruby
9 lines
293 B
Ruby
class AddPreviewToOneboxRenders < ActiveRecord::Migration
|
|
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
|