debian-mirror-gitlab/db/migrate/20190602014139_add_repository_type_to_lfs_objects_project.rb
2019-09-04 21:01:54 +05:30

12 lines
281 B
Ruby

# 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