Files
discourse/db/migrate/20240202032242_add_json_value_to_theme_settings.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
171 B
Ruby
Raw Normal View History

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