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
2018-07-27Enable frozen string in app/models/*.rbgfyoung
Partially addresses #47424.
2018-04-06[Rails5] Update `type_cast_*_database` methodsblackst0ne
2017-10-31Handle large values on `MergeRequestDiffCommit` datesAlejandro Rodríguez
2017-08-08Re-enable SqlInjection and CommandInjectionBrian Neel
2017-07-06Add table for merge request commitsSean McGivern
This is an ID-less table with just three columns: an association to the merge request diff the commit belongs to, the relative order of the commit within the merge request diff, and the commit SHA itself. Previously we stored much more information about the commits, so that we could display them even when they were deleted from the repo. Since 8.0, we ensure that those commits are kept around for as long as the target repo itself is, so we don't need to duplicate that data in the database.