debian-mirror-gitlab/db/migrate/20210908185754_add_status_to_dependency_proxy_blobs.rb
2021-11-11 11:23:49 +05:30

8 lines
211 B
Ruby

# frozen_string_literal: true
class AddStatusToDependencyProxyBlobs < Gitlab::Database::Migration[1.0]
def change
add_column :dependency_proxy_blobs, :status, :smallint, default: 0, null: false
end
end