gitlab-org--gitlab-foss/db/migrate/20160128233227_change_lfs_o...

7 lines
162 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-01-29 14:28:58 +00:00
class ChangeLfsObjectsSizeColumn < ActiveRecord::Migration
def change
change_column :lfs_objects, :size, :integer, limit: 8
end
end