debian-mirror-gitlab/db/post_migrate/20200703165434_drop_temporary_table_untracked_files_for_uploads_if_exists.rb
2020-10-24 23:57:45 +05:30

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