diff options
author | Takuya Noguchi <takninnovationresearch@gmail.com> | 2018-11-19 23:08:23 +0900 |
---|---|---|
committer | Takuya Noguchi <takninnovationresearch@gmail.com> | 2018-11-22 01:01:23 +0900 |
commit | e902f462c213d1bb0cc56f298c7bef01befa0616 (patch) | |
tree | 1d9b1f7328e9a5f1e3fb2f047f764b97db772780 /db | |
parent | d093bbaec526637bf0ce550b50002c19c7a1c056 (diff) | |
download | gitlab-ce-e902f462c213d1bb0cc56f298c7bef01befa0616.tar.gz |
Eliminate duplicated words
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20180628124813_alter_web_hook_logs_indexes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20180628124813_alter_web_hook_logs_indexes.rb b/db/migrate/20180628124813_alter_web_hook_logs_indexes.rb index 1878e76811d..289c87b30d2 100644 --- a/db/migrate/20180628124813_alter_web_hook_logs_indexes.rb +++ b/db/migrate/20180628124813_alter_web_hook_logs_indexes.rb @@ -12,7 +12,7 @@ class AlterWebHookLogsIndexes < ActiveRecord::Migration disable_ddl_transaction! # "created_at" comes first so the Sidekiq worker pruning old webhook logs can - # use a composite index index. + # use a composite index. # # We leave the old standalone index on "web_hook_id" in place so future code # that doesn't care about "created_at" can still use that index. |