From a77b462a53a02dbead1042bd12060177ade7b22a Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 5 Oct 2013 09:41:11 +0000 Subject: Support for multiple issue update keywords/rules in commit messages (#4911). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12197 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- ...131004113137_support_for_multiple_commit_keywords.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 db/migrate/20131004113137_support_for_multiple_commit_keywords.rb (limited to 'db/migrate') diff --git a/db/migrate/20131004113137_support_for_multiple_commit_keywords.rb b/db/migrate/20131004113137_support_for_multiple_commit_keywords.rb new file mode 100644 index 000000000..77989d9f3 --- /dev/null +++ b/db/migrate/20131004113137_support_for_multiple_commit_keywords.rb @@ -0,0 +1,17 @@ +class SupportForMultipleCommitKeywords < ActiveRecord::Migration + def up + # Replaces commit_fix_keywords, commit_fix_status_id, commit_fix_done_ratio settings + # with commit_update_keywords setting + keywords = Setting.where(:name => 'commit_fix_keywords').limit(1).pluck(:value).first + status_id = Setting.where(:name => 'commit_fix_status_id').limit(1).pluck(:value).first + done_ratio = Setting.where(:name => 'commit_fix_done_ratio').limit(1).pluck(:value).first + if keywords.present? + Setting.commit_update_keywords = {keywords => {'status_id' => status_id, 'done_ratio' => done_ratio}} + end + Setting.where(:name => %w(commit_fix_keywords commit_fix_status_id commit_fix_done_ratio)).delete_all + end + + def down + Setting.where(:name => 'commit_update_keywords').delete_all + end +end -- cgit v1.2.3