debian-mirror-gitlab/db/migrate/20190911115056_add_projects_max_pages_size.rb
2020-04-22 19:07:51 +05:30

10 lines
238 B
Ruby

# frozen_string_literal: true
class AddProjectsMaxPagesSize < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
add_column :projects, :max_pages_size, :integer # rubocop:disable Migration/AddColumnsToWideTables
end
end