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
1e776728
Commit
1e776728
authored
Sep 22, 2020
by
Magdalena Frankiewicz
Committed by
Adam Hegyi
Sep 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop column instance_statistics_visibility_private
After it has been ignored and is no longer needed
parent
77c03c90
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
1 deletion
+19
-1
changelogs/unreleased/drop-instance-statistics-visibility-private-column.yml
...ed/drop-instance-statistics-visibility-private-column.yml
+5
-0
db/post_migrate/20200922095954_remove_instance_statistics_visibility_private_from_application_settings.rb
...tatistics_visibility_private_from_application_settings.rb
+13
-0
db/schema_migrations/20200922095954
db/schema_migrations/20200922095954
+1
-0
db/structure.sql
db/structure.sql
+0
-1
No files found.
changelogs/unreleased/drop-instance-statistics-visibility-private-column.yml
0 → 100644
View file @
1e776728
---
title
:
Drop column instance_statistics_visibility_private
merge_request
:
42969
author
:
type
:
deprecated
db/post_migrate/20200922095954_remove_instance_statistics_visibility_private_from_application_settings.rb
0 → 100644
View file @
1e776728
# frozen_string_literal: true
class
RemoveInstanceStatisticsVisibilityPrivateFromApplicationSettings
<
ActiveRecord
::
Migration
[
6.0
]
DOWNTIME
=
false
def
up
remove_column
:application_settings
,
:instance_statistics_visibility_private
end
def
down
add_column
:application_settings
,
:instance_statistics_visibility_private
,
:boolean
,
default:
false
,
null:
false
end
end
db/schema_migrations/20200922095954
0 → 100644
View file @
1e776728
c55f27f817afc60462e5dc43755a4ddd76f1399f5e461bab4b36bf5e5b26ce0a
\ No newline at end of file
db/structure.sql
View file @
1e776728
...
...
@@ -9146,7 +9146,6 @@ CREATE TABLE application_settings (
snowplow_enabled
boolean
DEFAULT
false
NOT
NULL
,
snowplow_collector_hostname
character
varying
,
snowplow_cookie_domain
character
varying
,
instance_statistics_visibility_private
boolean
DEFAULT
false
NOT
NULL
,
web_ide_clientside_preview_enabled
boolean
DEFAULT
false
NOT
NULL
,
user_show_add_ssh_key_message
boolean
DEFAULT
true
NOT
NULL
,
custom_project_templates_group_id
integer
,
...
...
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