summaryrefslogtreecommitdiff
path: root/db/migrate/20190602014139_add_repository_type_to_lfs_objects_project.rb
blob: 6ff64ba12a9c1fcf5e73315d025377b6c44d45e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddRepositoryTypeToLfsObjectsProject < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :lfs_objects_projects, :repository_type, :integer, limit: 2, null: true
  end
end