gitlab-org--gitlab-foss/db/migrate/20201120092000_add_kroki_fo...

12 lines
262 B
Ruby

# frozen_string_literal: true
class AddKrokiFormatsToApplicationSettingsTable < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
change_table :application_settings do |t|
t.jsonb :kroki_formats, null: false, default: {}
end
end
end