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
30cc6b20
Commit
30cc6b20
authored
Apr 24, 2017
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable AddColumnWithDefaultToLargeTable cop for pre-existing migrations
parent
b9fa17d8
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
0 deletions
+11
-0
db/migrate/20160419122101_add_only_allow_merge_if_build_succeeds_to_projects.rb
...101_add_only_allow_merge_if_build_succeeds_to_projects.rb
+1
-0
db/migrate/20160608195742_add_repository_storage_to_projects.rb
...rate/20160608195742_add_repository_storage_to_projects.rb
+1
-0
db/migrate/20160715154212_add_request_access_enabled_to_projects.rb
.../20160715154212_add_request_access_enabled_to_projects.rb
+1
-0
db/migrate/20160715204316_add_request_access_enabled_to_groups.rb
...te/20160715204316_add_request_access_enabled_to_groups.rb
+1
-0
db/migrate/20160831223750_remove_features_enabled_from_projects.rb
...e/20160831223750_remove_features_enabled_from_projects.rb
+1
-0
db/migrate/20160913162434_remove_projects_pushes_since_gc.rb
db/migrate/20160913162434_remove_projects_pushes_since_gc.rb
+1
-0
db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb
...te/20170124193147_add_two_factor_columns_to_namespaces.rb
+1
-0
db/migrate/20170124193205_add_two_factor_columns_to_users.rb
db/migrate/20170124193205_add_two_factor_columns_to_users.rb
+1
-0
db/migrate/20170301125302_add_printing_merge_request_link_enabled_to_project.rb
...302_add_printing_merge_request_link_enabled_to_project.rb
+1
-0
db/migrate/20170305180853_add_auto_cancel_pending_pipelines_to_project.rb
...305180853_add_auto_cancel_pending_pipelines_to_project.rb
+1
-0
db/migrate/20170315174634_revert_add_notified_of_own_activity_to_users.rb
...315174634_revert_add_notified_of_own_activity_to_users.rb
+1
-0
No files found.
db/migrate/20160419122101_add_only_allow_merge_if_build_succeeds_to_projects.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddOnlyAllowMergeIfBuildSucceedsToProjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
...
...
db/migrate/20160608195742_add_repository_storage_to_projects.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddRepositoryStorageToProjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
...
...
db/migrate/20160715154212_add_request_access_enabled_to_projects.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddRequestAccessEnabledToProjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
...
...
db/migrate/20160715204316_add_request_access_enabled_to_groups.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddRequestAccessEnabledToGroups
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
...
...
db/migrate/20160831223750_remove_features_enabled_from_projects.rb
View file @
30cc6b20
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
RemoveFeaturesEnabledFromProjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
...
...
db/migrate/20160913162434_remove_projects_pushes_since_gc.rb
View file @
30cc6b20
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
RemoveProjectsPushesSinceGc
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170124193147_add_two_factor_columns_to_namespaces.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddTwoFactorColumnsToNamespaces
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170124193205_add_two_factor_columns_to_users.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddTwoFactorColumnsToUsers
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170301125302_add_printing_merge_request_link_enabled_to_project.rb
View file @
30cc6b20
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddPrintingMergeRequestLinkEnabledToProject
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
...
...
db/migrate/20170305180853_add_auto_cancel_pending_pipelines_to_project.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
AddAutoCancelPendingPipelinesToProject
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170315174634_revert_add_notified_of_own_activity_to_users.rb
View file @
30cc6b20
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
class
RevertAddNotifiedOfOwnActivityToUsers
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
...
...
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