summaryrefslogtreecommitdiff
path: root/db
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into ci/persist-registration-tokenGrzegorz Bizon2015-12-142-4/+8
|\ | | | | | | | | | | | | | | | | * master: Move CI admin builds and runners specs to correct directory Fix 500 when viewing specific runners on runners page Fix Ci::Project migration not migrating columns that cannot be NULL Fix MySQL migration of CI emails Minor fix in flow 'Merge when build succeeds'
| * Fix Ci::Project migration not migrating columns that cannot be NULL [ci skip]Kamil Trzcinski2015-12-141-3/+3
| |
| * Fix MySQL migration of CI emails [ci skip]Kamil Trzcinski2015-12-141-1/+5
| |
* | Merge branch 'master' into ci/persist-registration-tokenGrzegorz Bizon2015-12-1411-9/+232
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (66 commits) Fix runners admin view Fix migrations Rename mention of gitlab-git-http-server to gitlab-workhorse Bump Redis requirement to 2.8 for Sidekiq 4 requirements Fix wording on runner setup page add details on how to change saml button label Fix tests Move awards back to gray panel and few improvements to sidebar Few UI improvements to new sidebar implementation Fix tests for new issuable sidebar Update changelog Implement new sidebar for merge request page Make edit link on issuable sidebar works Redesign issue page for new sidebar Move awards css to separate file Implement issuable sidebar partial Update CHANGELOG Clarify cache behavior Run builds from projects with enabled CI Use Gitlab::Git instead of Ci::Git ... Conflicts: db/schema.rb
| * Merge branch 'ci-project-migrate' into 'master' Kamil Trzciński2015-12-146-9/+103
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ci Project migrate - This doesn't migrate: allow_git_fetch, coverage_regex, timeout. Since this are project configuration settings I would propose to migrate them to `.gitlab-ci.yml`. - This requires offline migrations. - It simplifies database models making all CI objects to be attached to: Project. - It removes Ci::Project, but makes /ci/projects working by adding method: Project.find_by_ci_id for backward compatibility (badges, triggers). - We should add default `timeout` to Application Settings. - It misses specs. - It is based on ci-services-migrate for now. - It removes CI events. - It removes administrator CI projects overview. - It removes CI application settings. In 8.4 or 8.5 we can remove redundant tables and columns. See merge request !1987
| | * Rename columns and rename migrationsKamil Trzcinski2015-12-116-3/+5
| | |
| | * Add runners tokenKamil Trzcinski2015-12-113-5/+8
| | |
| | * Migrate CI::Project to ProjectKamil Trzcinski2015-12-116-7/+96
| | |
| * | Fix migrations [ci skip]Kamil Trzcinski2015-12-144-10/+19
| |/
| * Enhance migrate CI emailsKamil Trzcinski2015-12-111-4/+23
| |
| * Migrate SlackService and HipChat serviceKamil Trzcinski2015-12-104-1/+66
| |
| * Migrate CI WebHooks and Emails to new tablesKamil Trzcinski2015-12-103-1/+29
| |
| * Migrate CI::Services and CI::WebHooks to Services and WebHooksKamil Trzcinski2015-12-102-1/+9
| |
* | Add `runners_registration_token` to ApplicationSettingsGrzegorz Bizon2015-12-112-1/+7
|/
* Merge branch 'fix-migrations' into 'master' Dmitriy Zaporozhets2015-12-093-40/+51
|\ | | | | | | | | | | | | | | | | | | Fix migrations for postgres on test environment Make `be rake db:migrate:reset RAILS_ENV=test` work Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !2002
| * Use up and downDouwe Maan2015-12-091-1/+5
| |
| * Fix migrations for postgres on test environmentDmitriy Zaporozhets2015-12-073-39/+46
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Fix schemaZeger-Jan van de Weg2015-12-071-5/+8
| |
* | Merge branch 'master' into merge-if-greenZeger-Jan van de Weg2015-12-077-62/+97
|\ \ | |/
| * Notify user if they cannot create projectsAndrew Tomaka2015-12-052-1/+7
| |
| * Rails update to 4.2.4Valery Sizov2015-11-251-53/+53
| |
| * Merge branch 'emoji_votes' into 'master' Dmitriy Zaporozhets2015-11-192-0/+8
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | Award Emoji This it first iteration of award emoji feature. We have plan to extend emoji picker by the next release. For now, you can add award by clicking to the emoji picker or posting a regular comment with emoji like ":+1:" and any other. You can post not only emoji that listed in the emoji picker. See merge request !1825
| | * satisfy rubocopValery Sizov2015-11-191-3/+1
| | |
| | * fix schemaValery Sizov2015-11-191-1/+1
| | |
| | * addressing commentsValery Sizov2015-11-192-2/+4
| | |
| | * award emojiValery Sizov2015-11-192-1/+7
| | |
| * | Updated DB schema with new issues/projects indexesYorick Peterse2015-11-191-3/+3
| | |
| * | Added index on projects.visibility_levelYorick Peterse2015-11-191-0/+5
| | |
| * | Added index on issues.stateYorick Peterse2015-11-191-0/+5
| | | | | | | | | | | | | | | This field is queried when filtering issues and due to the lack of an index would end up triggering a sequence scan.
| * | Merge branch 'atom-feed-latest-update' into 'master' Yorick Peterse2015-11-192-1/+7
| |\ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve performance of user profiles, finding groups, and finding projects This MR improves the following: * Rendering of profile pages and Atom feeds * Finding groups (using GroupsFinder & friends) * Finding projects (using ProjectsFinder & friends) Initially this MR was intended to only improve rendering of Atom feeds, but over time other fixes were introduced as well as the same code was the cause of all these problems. See merge request !1790
| | * Added an index on namespaces.publicYorick Peterse2015-11-182-1/+7
| | |
| * | Add import_error to project.Douwe Maan2015-11-182-1/+9
| |/
* | Refactor MergeWhenBuildSucceedsService and incorporate feedbackZeger-Jan van de Weg2015-11-231-2/+0
| |
* | Merge branch 'master' into merge-if-greenZeger-Jan van de Weg2015-11-1815-7/+131
|\ \ | |/
| * Add unique to oid index for lfs object.add_index_uniqMarin Jankovski2015-11-162-3/+9
| |
| * unique is for indexes.Marin Jankovski2015-11-161-1/+1
| |
| * Add support for git lfs.lfsMarin Jankovski2015-11-165-1/+54
| |
| * Implement Build ArtifactsKamil Trzcinski2015-11-103-1/+13
| | | | | | | | | | | | | | - Offloads uploading to GitLab Workhorse - Use /authorize request for fast uploading - Added backup recipes for artifacts - Support download acceleration using X-Sendfile
| * Merge remote-tracking branch 'origin/release-notes'Dmitriy Zaporozhets2015-11-102-1/+26
| |\ | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| | * Add release modelDmitriy Zaporozhets2015-11-052-1/+26
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | Merge branch 'shared_runners' into 'master' Kamil Trzciński2015-11-092-1/+7
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable shared runners for all new projects This adds Admin Setting option to enable shared runners for all new projects, and by default it is set to true. /cc @dzaporozhets @sytses See merge request !1738
| | * | Enable shared runners for all new projectsKamil Trzcinski2015-11-052-1/+7
| | | |
| * | | make migrations reversibleValery Sizov2015-11-053-3/+13
| |/ /
| * | Allow groups to appear in the search results if the group owner allows itValery Sizov2015-11-052-4/+10
| |/
| * Added index on services.templateYorick Peterse2015-10-292-0/+6
| | | | | | | | | | This column is queried when creating a new project, without an index this query would lead to a sequence scan.
* | Merge when build succeedsZeger-Jan van de Weg2015-11-022-6/+18
|/
* Add projects path indexadd-project-path-indexKamil Trzcinski2015-10-262-1/+11
| | | | Fixes performance regression introduced by MR1649
* Remove the contents of the satellites dirremove-satellitesJacob Vosmaer2015-10-232-1/+18
|
* Fail builds that also have empty stringKamil Trzcinski2015-10-232-1/+6
|
* Ensure MySQL CI limits DB migrations occur after the fields have been createdStan Hu2015-10-212-4/+9
| | | | Closes https://github.com/gitlabhq/gitlabhq/issues/9753