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
5bb214ad
Commit
5bb214ad
authored
Jun 30, 2016
by
Yorick Peterse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable Rubocop for old EE migrations
parent
184f8baa
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
16 additions
and
0 deletions
+16
-0
db/migrate/20140811155127_add_jira_issue_transition_id_to_services.rb
...0140811155127_add_jira_issue_transition_id_to_services.rb
+1
-0
db/migrate/20141030133853_add_member_check_to_git_hooks.rb
db/migrate/20141030133853_add_member_check_to_git_hooks.rb
+1
-0
db/migrate/20141126120926_add_merge_request_rebase_enabled_to_projects.rb
...126120926_add_merge_request_rebase_enabled_to_projects.rb
+1
-0
db/migrate/20141212124604_add_group_membership_lock.rb
db/migrate/20141212124604_add_group_membership_lock.rb
+1
-0
db/migrate/20150125163158_add_rebase_setting_to_projects.rb
db/migrate/20150125163158_add_rebase_setting_to_projects.rb
+1
-0
db/migrate/20150324223425_add_is_sample_to_git_hooks.rb
db/migrate/20150324223425_add_is_sample_to_git_hooks.rb
+1
-0
db/migrate/20150605131047_add_max_file_size_to_git_hooks.rb
db/migrate/20150605131047_add_max_file_size_to_git_hooks.rb
+1
-0
db/migrate/20150609125332_add_project_merge_approves.rb
db/migrate/20150609125332_add_project_merge_approves.rb
+1
-0
db/migrate/20150709134649_add_reset_approvers_to_project.rb
db/migrate/20150709134649_add_reset_approvers_to_project.rb
+1
-0
db/migrate/20150827121444_add_fast_forward_option_to_project.rb
...rate/20150827121444_add_fast_forward_option_to_project.rb
+1
-0
db/migrate/20150827144737_migrate_rebase_feature.rb
db/migrate/20150827144737_migrate_rebase_feature.rb
+1
-0
db/migrate/20151110125416_add_mirror_to_project.rb
db/migrate/20151110125416_add_mirror_to_project.rb
+1
-0
db/migrate/20160119170055_add_mirror_trigger_builds_to_projects.rb
...e/20160119170055_add_mirror_trigger_builds_to_projects.rb
+1
-0
db/migrate/20160301174731_add_fingerprint_index.rb
db/migrate/20160301174731_add_fingerprint_index.rb
+1
-0
db/migrate/20160316124047_git_hooks_project_id_index.rb
db/migrate/20160316124047_git_hooks_project_id_index.rb
+1
-0
db/migrate/20160317191509_add_last_sync_time_to_groups.rb
db/migrate/20160317191509_add_last_sync_time_to_groups.rb
+1
-0
No files found.
db/migrate/20140811155127_add_jira_issue_transition_id_to_services.rb
View file @
5bb214ad
# rubocop:disable all
class
AddJiraIssueTransitionIdToServices
<
ActiveRecord
::
Migration
def
up
add_column
:services
,
:jira_issue_transition_id
,
:string
,
default:
'2'
...
...
db/migrate/20141030133853_add_member_check_to_git_hooks.rb
View file @
5bb214ad
# rubocop:disable all
class
AddMemberCheckToGitHooks
<
ActiveRecord
::
Migration
def
change
add_column
:git_hooks
,
:member_check
,
:boolean
,
default:
false
,
null:
false
...
...
db/migrate/20141126120926_add_merge_request_rebase_enabled_to_projects.rb
View file @
5bb214ad
# rubocop:disable all
class
AddMergeRequestRebaseEnabledToProjects
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:merge_requests_rebase_enabled
,
:boolean
,
default:
false
...
...
db/migrate/20141212124604_add_group_membership_lock.rb
View file @
5bb214ad
# rubocop:disable all
class
AddGroupMembershipLock
<
ActiveRecord
::
Migration
def
change
add_column
:namespaces
,
:membership_lock
,
:boolean
,
default:
false
...
...
db/migrate/20150125163158_add_rebase_setting_to_projects.rb
View file @
5bb214ad
# rubocop:disable all
class
AddRebaseSettingToProjects
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:merge_requests_rebase_default
,
:boolean
,
default:
true
...
...
db/migrate/20150324223425_add_is_sample_to_git_hooks.rb
View file @
5bb214ad
# rubocop:disable all
class
AddIsSampleToGitHooks
<
ActiveRecord
::
Migration
def
change
add_column
:git_hooks
,
:is_sample
,
:boolean
,
default:
false
...
...
db/migrate/20150605131047_add_max_file_size_to_git_hooks.rb
View file @
5bb214ad
# rubocop:disable all
class
AddMaxFileSizeToGitHooks
<
ActiveRecord
::
Migration
def
change
add_column
:git_hooks
,
:max_file_size
,
:integer
,
default:
0
...
...
db/migrate/20150609125332_add_project_merge_approves.rb
View file @
5bb214ad
# rubocop:disable all
class
AddProjectMergeApproves
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:approvals_before_merge
,
:integer
,
null:
false
,
default:
0
...
...
db/migrate/20150709134649_add_reset_approvers_to_project.rb
View file @
5bb214ad
# rubocop:disable all
class
AddResetApproversToProject
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:reset_approvers_on_push
,
:boolean
,
default:
true
...
...
db/migrate/20150827121444_add_fast_forward_option_to_project.rb
View file @
5bb214ad
# rubocop:disable all
class
AddFastForwardOptionToProject
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:merge_requests_ff_only_enabled
,
:boolean
,
default:
false
...
...
db/migrate/20150827144737_migrate_rebase_feature.rb
View file @
5bb214ad
# rubocop:disable all
class
MigrateRebaseFeature
<
ActiveRecord
::
Migration
def
up
execute
%q{UPDATE projects SET merge_requests_ff_only_enabled = TRUE WHERE merge_requests_rebase_enabled IS TRUE}
...
...
db/migrate/20151110125416_add_mirror_to_project.rb
View file @
5bb214ad
# rubocop:disable all
class
AddMirrorToProject
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:mirror
,
:boolean
,
default:
false
,
null:
false
...
...
db/migrate/20160119170055_add_mirror_trigger_builds_to_projects.rb
View file @
5bb214ad
# rubocop:disable all
class
AddMirrorTriggerBuildsToProjects
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:mirror_trigger_builds
,
:boolean
,
default:
false
,
null:
false
...
...
db/migrate/20160301174731_add_fingerprint_index.rb
View file @
5bb214ad
# rubocop:disable all
class
AddFingerprintIndex
<
ActiveRecord
::
Migration
disable_ddl_transaction!
...
...
db/migrate/20160316124047_git_hooks_project_id_index.rb
View file @
5bb214ad
# rubocop:disable all
class
GitHooksProjectIdIndex
<
ActiveRecord
::
Migration
disable_ddl_transaction!
...
...
db/migrate/20160317191509_add_last_sync_time_to_groups.rb
View file @
5bb214ad
# rubocop:disable all
class
AddLastSyncTimeToGroups
<
ActiveRecord
::
Migration
def
change
add_column
:namespaces
,
:last_ldap_sync_at
,
:datetime
...
...
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