This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20130321154905_remove_oneboxes_from_db.rb

10 lines
157 B
Ruby

class RemoveOneboxesFromDb < ActiveRecord::Migration
def up
drop_table :post_onebox_renders
drop_table :onebox_renders
end
def down
end
end