gitlab-org--gitlab-foss/db/post_migrate/20200703165434_drop_tempora...

14 lines
281 B
Ruby

# frozen_string_literal: true
class DropTemporaryTableUntrackedFilesForUploadsIfExists < ActiveRecord::Migration[6.0]
DOWNTIME = false
def up
execute 'DROP TABLE IF EXISTS untracked_files_for_uploads'
end
def down
# no-op - this table should not exist
end
end