gitlab-org--gitlab-foss/db/migrate/20190911115056_add_projects...

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