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
c0ef6dc7
Commit
c0ef6dc7
authored
Dec 13, 2017
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Satisfy rubocop[ci skip]
parent
ed49069b
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
0 deletions
+11
-0
db/migrate/20140907223153_remove_columns_for_services.rb
db/migrate/20140907223153_remove_columns_for_services.rb
+1
-0
db/migrate/20141230100055_remove_old_fields_from_namespace.rb
...igrate/20141230100055_remove_old_fields_from_namespace.rb
+1
-0
db/migrate/20160302141317_rename_header_field_on_appearrance.rb
...rate/20160302141317_rename_header_field_on_appearrance.rb
+1
-0
db/migrate/20160718211059_remove_last_ldap_sync_status_from_groups.rb
...0160718211059_remove_last_ldap_sync_status_from_groups.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
-0
db/migrate/20170118200412_convert_namespaces_repository_size_limit_to_bytes.rb
...0412_convert_namespaces_repository_size_limit_to_bytes.rb
+1
-0
db/migrate/20170215151541_remove_old_elasticsearch_settings.rb
...grate/20170215151541_remove_old_elasticsearch_settings.rb
+1
-0
db/migrate/20170420200123_remove_service_desk_mail_key_from_projects.rb
...70420200123_remove_service_desk_mail_key_from_projects.rb
+1
-0
db/migrate/20170811203342_fix_email_opted_in_at_on_users.rb
db/migrate/20170811203342_fix_email_opted_in_at_on_users.rb
+1
-0
db/migrate/20170818174141_drop_unnecessary_timestamp_columns_in_geo_event_tables.rb
...drop_unnecessary_timestamp_columns_in_geo_event_tables.rb
+1
-0
No files found.
db/migrate/20140907223153_remove_columns_for_services.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
class
RemoveColumnsForServices
<
ActiveRecord
::
Migration
class
RemoveColumnsForServices
<
ActiveRecord
::
Migration
def
change
def
change
remove_column
:services
,
:username
,
:string
remove_column
:services
,
:username
,
:string
...
...
db/migrate/20141230100055_remove_old_fields_from_namespace.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
class
RemoveOldFieldsFromNamespace
<
ActiveRecord
::
Migration
class
RemoveOldFieldsFromNamespace
<
ActiveRecord
::
Migration
def
up
def
up
remove_column
:namespaces
,
:ldap_cn
remove_column
:namespaces
,
:ldap_cn
...
...
db/migrate/20160302141317_rename_header_field_on_appearrance.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
class
RenameHeaderFieldOnAppearrance
<
ActiveRecord
::
Migration
class
RenameHeaderFieldOnAppearrance
<
ActiveRecord
::
Migration
def
up
def
up
unless
column_exists?
(
:appearances
,
:header_logo
)
unless
column_exists?
(
:appearances
,
:header_logo
)
...
...
db/migrate/20160718211059_remove_last_ldap_sync_status_from_groups.rb
View file @
c0ef6dc7
# Migration type: online without errors (works on previous version and new one)
# Migration type: online without errors (works on previous version and new one)
# rubocop:disable Migration/Datetime
# rubocop:disable Migration/Datetime
# rubocop:disable Migration/RemoveColumn
class
RemoveLastLdapSyncStatusFromGroups
<
ActiveRecord
::
Migration
class
RemoveLastLdapSyncStatusFromGroups
<
ActiveRecord
::
Migration
DOWNTIME
=
false
DOWNTIME
=
false
...
...
db/migrate/20170118194941_convert_application_settings_repository_size_limit_to_bytes.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
# rubocop:disable Migration/UpdateColumnInBatches
# rubocop:disable Migration/UpdateColumnInBatches
class
ConvertApplicationSettingsRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
class
ConvertApplicationSettingsRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170118200338_convert_projects_repository_size_limit_to_bytes.rb
View file @
c0ef6dc7
# rubocop:disable Migration/UpdateColumnInBatches
# rubocop:disable Migration/UpdateColumnInBatches
# rubocop:disable Migration/UpdateLargeTable
# rubocop:disable Migration/UpdateLargeTable
# rubocop:disable Migration/RemoveColumn
class
ConvertProjectsRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
class
ConvertProjectsRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170118200412_convert_namespaces_repository_size_limit_to_bytes.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
# rubocop:disable Migration/UpdateColumnInBatches
# rubocop:disable Migration/UpdateColumnInBatches
# rubocop:disable Migration/UpdateLargeTable
# rubocop:disable Migration/UpdateLargeTable
class
ConvertNamespacesRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
class
ConvertNamespacesRepositorySizeLimitToBytes
<
ActiveRecord
::
Migration
...
...
db/migrate/20170215151541_remove_old_elasticsearch_settings.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
class
RemoveOldElasticsearchSettings
<
ActiveRecord
::
Migration
class
RemoveOldElasticsearchSettings
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
include
Gitlab
::
Database
::
MigrationHelpers
...
...
db/migrate/20170420200123_remove_service_desk_mail_key_from_projects.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
class
RemoveServiceDeskMailKeyFromProjects
<
ActiveRecord
::
Migration
class
RemoveServiceDeskMailKeyFromProjects
<
ActiveRecord
::
Migration
DOWNTIME
=
false
DOWNTIME
=
false
...
...
db/migrate/20170811203342_fix_email_opted_in_at_on_users.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# for more information on how to write migrations for GitLab.
...
...
db/migrate/20170818174141_drop_unnecessary_timestamp_columns_in_geo_event_tables.rb
View file @
c0ef6dc7
# rubocop:disable Migration/RemoveColumn
class
DropUnnecessaryTimestampColumnsInGeoEventTables
<
ActiveRecord
::
Migration
class
DropUnnecessaryTimestampColumnsInGeoEventTables
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
include
Gitlab
::
Database
::
MigrationHelpers
...
...
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