Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
3cefba2a
Commit
3cefba2a
authored
May 23, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable Migration/UpdateColumnInBatches for old migrations
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
2b9989b7
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
14 additions
and
18 deletions
+14
-18
db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
+1
-0
db/migrate/20160721081015_drop_and_readd_has_external_wiki_in_projects.rb
...721081015_drop_and_readd_has_external_wiki_in_projects.rb
+1
-0
db/migrate/20160831231325_update_mirror_when_empty_import_url_in_projects.rb
...231325_update_mirror_when_empty_import_url_in_projects.rb
+1
-3
db/migrate/20160901141443_set_confidential_issues_events_on_webhooks.rb
...60901141443_set_confidential_issues_events_on_webhooks.rb
+1
-0
db/migrate/20160919144305_add_type_to_labels.rb
db/migrate/20160919144305_add_type_to_labels.rb
+1
-0
db/migrate/20161018124658_make_project_owners_masters.rb
db/migrate/20161018124658_make_project_owners_masters.rb
+1
-0
db/migrate/20161227192806_rename_slack_and_mattermost_notification_services.rb
...2806_rename_slack_and_mattermost_notification_services.rb
+1
-0
db/migrate/20170118194941_convert_application_settings_repository_size_limit_to_bytes.rb
...rt_application_settings_repository_size_limit_to_bytes.rb
+1
-0
db/migrate/20170118200338_convert_projects_repository_size_limit_to_bytes.rb
...200338_convert_projects_repository_size_limit_to_bytes.rb
+1
-3
db/migrate/20170118200412_convert_namespaces_repository_size_limit_to_bytes.rb
...0412_convert_namespaces_repository_size_limit_to_bytes.rb
+1
-3
db/migrate/20170320173259_migrate_assignees.rb
db/migrate/20170320173259_migrate_assignees.rb
+1
-3
db/post_migrate/20170131214021_reset_users_authorized_projects_populated.rb
...170131214021_reset_users_authorized_projects_populated.rb
+1
-3
db/post_migrate/20170309171644_reset_relative_position_for_issue.rb
...grate/20170309171644_reset_relative_position_for_issue.rb
+1
-3
db/post_migrate/20170502070007_enable_auto_cancel_pending_pipelines_for_all.rb
...502070007_enable_auto_cancel_pending_pipelines_for_all.rb
+1
-0
spec/migrations/update_retried_for_ci_build_spec.rb
spec/migrations/update_retried_for_ci_build_spec.rb
+0
-0
No files found.
db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
SetMissingStageOnCiBuilds
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20160721081015_drop_and_readd_has_external_wiki_in_projects.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
DropAndReaddHasExternalWikiInProjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20160831231325_update_mirror_when_empty_import_url_in_projects.rb
View file @
3cefba2a
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/UpdateColumnInBatches
class
UpdateMirrorWhenEmptyImportUrlInProjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20160901141443_set_confidential_issues_events_on_webhooks.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
SetConfidentialIssuesEventsOnWebhooks
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20160919144305_add_type_to_labels.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
AddTypeToLabels
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20161018124658_make_project_owners_masters.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
MakeProjectOwnersMasters
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20161227192806_rename_slack_and_mattermost_notification_services.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
RenameSlackAndMattermostNotificationServices
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170118194941_convert_application_settings_repository_size_limit_to_bytes.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
ConvertApplicationSettingsRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170118200338_convert_projects_repository_size_limit_to_bytes.rb
View file @
3cefba2a
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/UpdateColumnInBatches
class
ConvertProjectsRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170118200412_convert_namespaces_repository_size_limit_to_bytes.rb
View file @
3cefba2a
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/UpdateColumnInBatches
class
ConvertNamespacesRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170320173259_migrate_assignees.rb
View file @
3cefba2a
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/UpdateColumnInBatches
class
MigrateAssignees
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/post_migrate/20170131214021_reset_users_authorized_projects_populated.rb
View file @
3cefba2a
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/UpdateColumnInBatches
class
ResetUsersAuthorizedProjectsPopulated
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/post_migrate/20170309171644_reset_relative_position_for_issue.rb
View file @
3cefba2a
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/UpdateColumnInBatches
class
ResetRelativePositionForIssue
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/post_migrate/20170502070007_enable_auto_cancel_pending_pipelines_for_all.rb
View file @
3cefba2a
# rubocop:disable Migration/UpdateColumnInBatches
class
EnableAutoCancelPendingPipelinesForAll
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
spec/migrations/update_retried_for_ci_build
s
_spec.rb
→
spec/migrations/update_retried_for_ci_build_spec.rb
View file @
3cefba2a
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment