Files
danbooru/db/migrate/20170316224630_drop_post_versions.rb
2019-12-22 21:23:37 -06:00

7 lines
147 B
Ruby

class DropPostVersions < ActiveRecord::Migration[4.2]
def change
execute "set statement_timeout = 0"
drop_table :post_versions
end
end