summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200219193058_remove_state_from_issues.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20200219193058_remove_state_from_issues.rb')
-rw-r--r--db/post_migrate/20200219193058_remove_state_from_issues.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/post_migrate/20200219193058_remove_state_from_issues.rb b/db/post_migrate/20200219193058_remove_state_from_issues.rb
index ac27a9a9b69..007ba600ce7 100644
--- a/db/post_migrate/20200219193058_remove_state_from_issues.rb
+++ b/db/post_migrate/20200219193058_remove_state_from_issues.rb
@@ -18,7 +18,7 @@ class RemoveStateFromIssues < ActiveRecord::Migration[6.0]
return if issue_state_column_exists?
with_lock_retries do
- add_column :issues, :state, :string # rubocop:disable Migration/AddLimitToStringColumns
+ add_column :issues, :state, :string
end
end