Commit f9ed8e1d authored by Mayra Cabrera's avatar Mayra Cabrera

Merge branch '197480-remove-package-file_type' into 'master'

Remove file_type from package_files table

See merge request gitlab-org/gitlab!26527
parents 25061531 9cf23182
---
title: Remove unused file_type column from packages_package_files
merge_request: 26527
author:
type: changed
# frozen_string_literal: true
class RemoveFileTypeFromPackagesPackageFiles < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
remove_column :packages_package_files, :file_type, :integer
end
end
......@@ -3029,7 +3029,6 @@ ActiveRecord::Schema.define(version: 2020_03_06_170531) do
t.datetime_with_timezone "created_at", null: false
t.datetime_with_timezone "updated_at", null: false
t.bigint "size"
t.integer "file_type"
t.integer "file_store"
t.binary "file_md5"
t.binary "file_sha1"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment