summaryrefslogtreecommitdiff
path: root/db/post_migrate/20191202031812_drop_operations_feature_flags_clients_token.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20191202031812_drop_operations_feature_flags_clients_token.rb')
-rw-r--r--db/post_migrate/20191202031812_drop_operations_feature_flags_clients_token.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/post_migrate/20191202031812_drop_operations_feature_flags_clients_token.rb b/db/post_migrate/20191202031812_drop_operations_feature_flags_clients_token.rb
index bda461af7bc..93cef322f02 100644
--- a/db/post_migrate/20191202031812_drop_operations_feature_flags_clients_token.rb
+++ b/db/post_migrate/20191202031812_drop_operations_feature_flags_clients_token.rb
@@ -14,7 +14,7 @@ class DropOperationsFeatureFlagsClientsToken < ActiveRecord::Migration[5.2]
def down
unless column_exists?(:operations_feature_flags_clients, :token)
- add_column :operations_feature_flags_clients, :token, :string # rubocop:disable Migration/AddLimitToStringColumns
+ add_column :operations_feature_flags_clients, :token, :string
end
add_concurrent_index :operations_feature_flags_clients, [:project_id, :token], unique: true,