From cf977b7f45c13d9c1807b179294cb661e7fcda30 Mon Sep 17 00:00:00 2001 From: Mooktakim Ahmed Date: Wed, 23 Oct 2024 16:59:53 +0100 Subject: [PATCH] [CPDLP-3631] linter fix --- .../20241023112339_change_object_type_to_json_for_versions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/20241023112339_change_object_type_to_json_for_versions.rb b/db/migrate/20241023112339_change_object_type_to_json_for_versions.rb index be5d277e3c..1a386fb827 100644 --- a/db/migrate/20241023112339_change_object_type_to_json_for_versions.rb +++ b/db/migrate/20241023112339_change_object_type_to_json_for_versions.rb @@ -1,5 +1,5 @@ class ChangeObjectTypeToJsonForVersions < ActiveRecord::Migration[7.1] - def change + def up change_column :versions, :object, :json, using: "object::text::json" add_column :versions, :object_changes, :json end