debian-mirror-gitlab/db/migrate/20160128233227_change_lfs_objects_size_column.rb

7 lines
162 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-02-05 20:25:01 +05:30
class ChangeLfsObjectsSizeColumn < ActiveRecord::Migration
def change
change_column :lfs_objects, :size, :integer, limit: 8
end
end