mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:13:22 +08:00
10 lines
293 B
Ruby
10 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
|