gitlab-org--gitlab-foss/db/migrate/20200713141854_add_wiki_pag...

10 lines
271 B
Ruby

# frozen_string_literal: true
class AddWikiPageMaxContentBytesToApplicationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :application_settings, :wiki_page_max_content_bytes, :bigint, default: 50.megabytes, null: false
end
end