Files
danbooru/db/migrate/20170316224630_drop_post_versions.rb
2017-03-16 15:56:42 -07:00

7 lines
140 B
Ruby

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