2020-04-22 19:07:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddVerificationColumnsToPackages < ActiveRecord::Migration[6.0]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
# rubocop:disable Migration/PreventStrings
|
2020-04-22 19:07:51 +05:30
|
|
|
def change
|
|
|
|
add_column :packages_package_files, :verification_retry_at, :datetime_with_timezone
|
|
|
|
add_column :packages_package_files, :verified_at, :datetime_with_timezone
|
|
|
|
add_column :packages_package_files, :verification_checksum, :string, limit: 255
|
|
|
|
add_column :packages_package_files, :verification_failure, :string, limit: 255
|
|
|
|
add_column :packages_package_files, :verification_retry_count, :integer
|
|
|
|
end
|
2020-05-24 23:13:21 +05:30
|
|
|
# rubocop:enable Migration/PreventStrings
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|