discourse/db/migrate/20240202032242_add_json_val...

8 lines
171 B
Ruby

# frozen_string_literal: true
class AddJsonValueToThemeSettings < ActiveRecord::Migration[7.0]
def change
add_column :theme_settings, :json_value, :jsonb
end
end