Created
February 5, 2021 02:15
-
-
Save vividtone/d730ec95d3b56d2b6375ebde75b46b03 to your computer and use it in GitHub Desktop.
Redmineの終了状態のステータスの名称の先頭にチェックマーク✅️ を追加する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IssueStatus.where(:is_closed => true).where.not("name like '%✅️ %'").each {|s| s.name = '✅️ ' + s.name; s.save!} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment