Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-06-09Enable RuboCop for migrationsSean McGivern
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
2016-04-21Attempt to create pg_trgm extension in migration for test/dev environmentsStan Hu
Closes #15210
2016-03-11More detailed trigram migration error messageYorick Peterse
This explains the user what they need to run and where to go in case they want to learn more about "CREATE EXTENSION".
2016-03-11Added trigram indexes for various searched columnsYorick Peterse
This allows the LIKE condition to use an index. Without a GIN + trigram index LIKE queries using a wildcard at the start _won't_ use an index and instead perform a sequence scan.