From 117945f3bd53d18d32e57fdbae4609bbca4c1122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=92=A9?= <69432552+unchidev@users.noreply.github.com> Date: Tue, 25 Jun 2024 04:31:37 +0900 Subject: [PATCH] run standardrb --fix --- .../20240406203417_add_table_comment_to_user_images.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/dummy/db/migrate/20240406203417_add_table_comment_to_user_images.rb b/spec/dummy/db/migrate/20240406203417_add_table_comment_to_user_images.rb index 75b8742..31f36a8 100644 --- a/spec/dummy/db/migrate/20240406203417_add_table_comment_to_user_images.rb +++ b/spec/dummy/db/migrate/20240406203417_add_table_comment_to_user_images.rb @@ -1,5 +1,5 @@ class AddTableCommentToUserImages < ActiveRecord::Migration[7.0] -def change - change_table_comment(:user_images, from: nil, to: 'uploaded image by user') + def change + change_table_comment(:user_images, from: nil, to: "uploaded image by user") end end